From d0d5270b464e65ca819d3654af95a689098cfa67 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 21 Oct 2019 16:08:51 +0300 Subject: [PATCH 01/33] improve springboard-alert tools --- Makefile | 2 +- tools/springboard-alerts/README.md | 5 ++ .../springboard-alerts/collect-all-alerts.rb | 4 +- tools/springboard-alerts/frameworks.json | 7 +++ tools/springboard-alerts/update-alerts.rb | 52 +++++++++++++++---- 5 files changed, 59 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index ac7e7d1c..ec88d777 100644 --- a/Makefile +++ b/Makefile @@ -58,4 +58,4 @@ gemuse: update-alerts: cd tools/springboard-alerts && \ bundle install && \ - bundle exec ruby update-alerts.rb + bundle exec ruby update-alerts.rb "$(ROOT_DIR)" diff --git a/tools/springboard-alerts/README.md b/tools/springboard-alerts/README.md index c33762f6..d0ed8a8b 100644 --- a/tools/springboard-alerts/README.md +++ b/tools/springboard-alerts/README.md @@ -8,10 +8,15 @@ The database of alerts is extended with every new Xcode release. This database i * ruby >= 2.3 ### How to use +**Collect alerts under core simulator directory of current Xcode:** ``` $ cd DeviceAgent.iOS $ make update-alerts ``` +**Collect alerts under custom directory** +``` +$ make update-alerts ROOT_DIR="/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 10.3.simruntime" +``` Changes will be done under `Server/Resources.xcassets/springboard-alerts/**` diff --git a/tools/springboard-alerts/collect-all-alerts.rb b/tools/springboard-alerts/collect-all-alerts.rb index 647e8736..83732901 100644 --- a/tools/springboard-alerts/collect-all-alerts.rb +++ b/tools/springboard-alerts/collect-all-alerts.rb @@ -6,6 +6,8 @@ # Init with current Xcode xcode = RunLoop::Xcode.new +root_dir = xcode.core_simulator_dir +root_dir = ARGV[0] unless ARGV.empty? || ARGV[0].empty? output_path = File.expand_path("reports/all-alerts/#{xcode.version}/") @@ -24,7 +26,7 @@ def collect_localization_dictionary(lang_dir_path) end collection = {} -Dir.glob("#{xcode.core_simulator_dir}/**/*.lproj") do |lang_dir| +Dir.glob("#{root_dir}/**/*.lproj") do |lang_dir| puts "Scanning #{lang_dir}..." lang_name = File.basename(lang_dir, '.lproj') dict = collect_localization_dictionary(lang_dir) diff --git a/tools/springboard-alerts/frameworks.json b/tools/springboard-alerts/frameworks.json index 24185b62..ebadb309 100644 --- a/tools/springboard-alerts/frameworks.json +++ b/tools/springboard-alerts/frameworks.json @@ -13,6 +13,13 @@ { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT_ONE", "button": "LOCATION_CLIENT_PERMISSION_OK" } ] }, + { + "name": "Maps.app", + "values": [ + { "title": "Allow '%@' to access your location while you use the app?", "button": "Allow" }, + { "title": "Allow '%@' to access your location while you are using the app?", "button": "Allow" } + ] + }, { "name": "TCC.framework", "values": [ diff --git a/tools/springboard-alerts/update-alerts.rb b/tools/springboard-alerts/update-alerts.rb index ea99385f..9fdb5c38 100644 --- a/tools/springboard-alerts/update-alerts.rb +++ b/tools/springboard-alerts/update-alerts.rb @@ -22,7 +22,7 @@ 'zh-Hant-US' => 'zh_TW', 'zh-Hant-HK' => 'zh-HK', # Norwegian, it is the same language: preferredLanguage returns 'nb' but translation folder is named as 'no' - 'nb' => 'no' + 'nb' => 'no' } language_to_ignore = [ @@ -31,6 +31,8 @@ # Init with current Xcode xcode = RunLoop::Xcode.new +root_dir = xcode.core_simulator_dir +root_dir = ARGV[0] unless ARGV.empty? || ARGV[0].empty? # Try to find specific framework under CoreSimulators directory def find_framework(root_path, framework_name) @@ -67,22 +69,28 @@ def collect_localization_dictionary(language_dir_path) # Iterate through required values for framework and try to get values from dict # Add found values to localization storage -def pick_required_values(found_values_dict, target_framework, localization_storage, language) - framework_name = target_framework['name'] - target_framework['values'].each do |item| +def pick_required_values(found_values_dict, target_values, localization_storage, language) + unknown_alert_constants = [] + unknown_button_constants = [] + + target_values.each do |item| title = item['title'] button = item['button'] title_value = found_values_dict[title] button_value = found_values_dict[button] - puts "Unknown button constant '#{button}' for framework '#{framework_name}'(#{language})".yellow if button && !button_value + if button && !button_value + unknown_button_constants.push(button) + end if title_value localization_storage.add_entry(language, title_value, button_value) else - puts "Unknown alert constant '#{title}' for framework '#{framework_name}'(#{language})".red + unknown_alert_constants.push(title) end end + + return unknown_alert_constants, unknown_button_constants end target_frameworks = read_json('frameworks.json') @@ -90,7 +98,7 @@ def pick_required_values(found_values_dict, target_framework, localization_stora target_frameworks.each do |framework| puts "Scan framework '#{framework['name']}'".green - framework_path = find_framework(xcode.core_simulator_dir, framework['name']) + framework_path = find_framework(root_dir, framework['name']) unless framework_path && Dir.exist?(framework_path) puts "Skip '#{framework['name']}' since it was not found".red @@ -99,12 +107,25 @@ def pick_required_values(found_values_dict, target_framework, localization_stora puts "Found on path '#{framework_path}'" + unknown_alert_constants = {} + unknown_button_constants = {} + find_languages(framework_path).each do |language_path| language_name = get_language_name(language_path, language_mapping) next if language_to_ignore.include?(language_name) found_values_dict = collect_localization_dictionary(language_path) - pick_required_values(found_values_dict, framework, localization_storage, language_name) + unknown_alerts, unknown_buttons = pick_required_values(found_values_dict, framework['values'], localization_storage, language_name) + + # log missed alerts and buttons for debug + unknown_alerts.each do |unknown_alert| + unknown_alert_constants[unknown_alert] = [] unless unknown_alert_constants.key?(unknown_alert) + unknown_alert_constants[unknown_alert].push(language_name) + end + unknown_buttons.each do |unknown_button| + unknown_button_constants[unknown_button] = [] unless unknown_button_constants.key?(unknown_button) + unknown_button_constants[unknown_button].push(language_name) + end # debug info if ENV['DEBUG'] && language_name == 'en' @@ -112,7 +133,20 @@ def pick_required_values(found_values_dict, target_framework, localization_stora save_json(report_path, found_values_dict) end end + + if unknown_alert_constants.any? + unknown_alert_constants.each_pair do |key, value| + puts "Unknown alert constant '#{key}' for framework '#{framework['name']}' (#{value.join(',')})".red + end + end + + if unknown_button_constants.any? + unknown_button_constants.each_pair do |key, value| + puts "Unknown button constant '#{key}' for framework '#{framework['name']}' (#{value.join(',')})".red + end + end + end # save updated database to the local file -localization_storage.save +localization_storage.save \ No newline at end of file From 10d871121c1b93f29351ae3951aa635f6e817804 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 21 Oct 2019 16:08:59 +0300 Subject: [PATCH 02/33] run on iOS 10 --- .../springboard-alerts-ar.dataset/alerts.json | 7 +++++++ .../springboard-alerts-da.dataset/alerts.json | 7 +++++++ .../springboard-alerts-hi.dataset/alerts.json | 14 ++++++++++++++ .../springboard-alerts-it.dataset/alerts.json | 7 +++++++ .../springboard-alerts-ko.dataset/alerts.json | 7 +++++++ .../springboard-alerts-no.dataset/alerts.json | 7 +++++++ .../springboard-alerts-pl.dataset/alerts.json | 7 +++++++ .../springboard-alerts-tr.dataset/alerts.json | 7 +++++++ .../springboard-alerts-uk.dataset/alerts.json | 7 +++++++ 9 files changed, 70 insertions(+) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json index 7602718a..6446e686 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json @@ -464,5 +464,12 @@ "السماح" ], "shouldAccept": true + }, + { + "title": "السماح لـ \"%@\" بالوصول إلى موقعك عند استخدامك للتطبيق؟", + "buttons": [ + "السماح" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json index fe781894..2bd33392 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json @@ -478,5 +478,12 @@ "Tillad" ], "shouldAccept": true + }, + { + "title": "Må “%@” få adgang til din lokalitet, når du bruger appen?", + "buttons": [ + "Tillad" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index abfdb809..7a3902d3 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -675,5 +675,19 @@ "अनुमति दें" ], "shouldAccept": true + }, + { + "title": "जब आप ऐप का उपयोग करें तब “%@” को अपने स्थान का उपयोग करने की अनुमति दें?", + "buttons": [ + "अनुमति दें" + ], + "shouldAccept": true + }, + { + "title": "“%@” को सहायक उपकरणों से कनेक्ट होने की अनुमति देने के लिए ब्लूटूथ चालू करें", + "buttons": [ + "ठीक" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json index 2b70e5b2..8b4bd3bf 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json @@ -499,5 +499,12 @@ "Consenti" ], "shouldAccept": true + }, + { + "title": "Vuoi consentire a “%@” di accedere alla tua posizione mentre utilizzi l'app?", + "buttons": [ + "Consenti" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index 651343a2..b65f9975 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -558,5 +558,12 @@ "허용" ], "shouldAccept": true + }, + { + "title": "앱을 사용하는 동안 ‘%@’이(가) 사용자의 위치에 접근하도록 허용하겠습니까?", + "buttons": [ + "허용" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json index c1a722ea..9993e681 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json @@ -597,5 +597,12 @@ "Tillat" ], "shouldAccept": true + }, + { + "title": "Vil du gi «%@» tilgang til posisjonen din mens du bruker appen?", + "buttons": [ + "Tillat" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json index 9f6d5d66..63eac105 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json @@ -492,5 +492,12 @@ "Pozwalaj" ], "shouldAccept": true + }, + { + "title": "Pozwalać programowi „%@” udostępniać Twoje położenie, gdy go używasz?", + "buttons": [ + "Pozwalaj" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json index bc0ffa39..3c9e0277 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json @@ -492,5 +492,12 @@ "İzin Ver" ], "shouldAccept": true + }, + { + "title": "“%@” Öğesinin Aksesuarlara Bağlanmasına İzin Vermek için Bluetooth'u Açın", + "buttons": [ + "Tamam" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json index d3ab9fb5..a3d80eeb 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json @@ -612,5 +612,12 @@ "Дозволити" ], "shouldAccept": true + }, + { + "title": "Увімкніть Bluetooth, щоб дозволити «%@» підключитися до приладдя", + "buttons": [ + "ОК" + ], + "shouldAccept": true } ] \ No newline at end of file From c0c46500a9fa9c2791f78a4b872d8cae08d11ba4 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 21 Oct 2019 16:12:28 +0300 Subject: [PATCH 03/33] Commit alerts from iOS 9.3 --- .../springboard-alerts-ar.dataset/alerts.json | 14 ++ .../springboard-alerts-ca.dataset/alerts.json | 14 ++ .../springboard-alerts-cs.dataset/alerts.json | 70 ++++++++ .../springboard-alerts-da.dataset/alerts.json | 36 +++- .../springboard-alerts-de.dataset/alerts.json | 154 ++++++++++++++++++ .../springboard-alerts-el.dataset/alerts.json | 91 +++++++++++ .../springboard-alerts-en.dataset/alerts.json | 14 ++ .../alerts.json | 14 ++ .../alerts.json | 14 ++ .../springboard-alerts-es.dataset/alerts.json | 58 ++++++- .../springboard-alerts-fi.dataset/alerts.json | 56 +++++++ .../springboard-alerts-fr.dataset/alerts.json | 14 ++ .../alerts.json | 14 ++ .../springboard-alerts-he.dataset/alerts.json | 21 +++ .../springboard-alerts-hi.dataset/alerts.json | 21 +++ .../springboard-alerts-hr.dataset/alerts.json | 7 + .../springboard-alerts-hu.dataset/alerts.json | 56 +++++++ .../springboard-alerts-id.dataset/alerts.json | 14 ++ .../springboard-alerts-it.dataset/alerts.json | 7 + .../springboard-alerts-ja.dataset/alerts.json | 21 +++ .../springboard-alerts-ko.dataset/alerts.json | 42 +++++ .../springboard-alerts-ms.dataset/alerts.json | 56 +++++++ .../springboard-alerts-nl.dataset/alerts.json | 42 +++++ .../springboard-alerts-no.dataset/alerts.json | 21 +++ .../springboard-alerts-pl.dataset/alerts.json | 14 ++ .../springboard-alerts-pt.dataset/alerts.json | 28 ++++ .../alerts.json | 7 + .../springboard-alerts-ro.dataset/alerts.json | 7 + .../springboard-alerts-ru.dataset/alerts.json | 28 ++++ .../springboard-alerts-sk.dataset/alerts.json | 14 ++ .../springboard-alerts-sv.dataset/alerts.json | 7 + .../springboard-alerts-th.dataset/alerts.json | 21 +++ .../springboard-alerts-tr.dataset/alerts.json | 77 +++++++++ .../springboard-alerts-uk.dataset/alerts.json | 14 ++ .../springboard-alerts-vi.dataset/alerts.json | 21 +++ .../alerts.json | 7 + .../alerts.json | 82 +++++++++- .../alerts.json | 26 ++- 38 files changed, 1208 insertions(+), 16 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json index 6446e686..9e8f5cb1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json @@ -471,5 +471,19 @@ "السماح" ], "shouldAccept": true + }, + { + "title": "يرغب \"%@\" في الوصول إلى Apple Music", + "buttons": [ + "موافق" + ], + "shouldAccept": true + }, + { + "title": "يرغب \"%@\" في إتاحة البيانات إلى أجهزة bluetooth القريبة حتى عند عدم استخدامك للتطبيق.", + "buttons": [ + "موافق" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json index ef42634d..eb6aeed1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json @@ -535,5 +535,19 @@ "Permetre" ], "shouldAccept": true + }, + { + "title": "“%@” vol accedir a l’Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Iniciar sessió a l’iTunes Store", + "buttons": [ + "Cancel·lar" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json index 5c6fa38f..80fde5d4 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json @@ -493,5 +493,75 @@ "Povolit" ], "shouldAccept": true + }, + { + "title": "„%@“ žádá o přístup k mikrofonu", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "„%@“ žádá o přístup k vašemu kalendáři", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "„%@“ žádá o přístup k vaší pohybové a kondiční aktivitě", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "„%@“ žádá o přístup k fotoaparátu", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "„%@“ žádá o přístup k vašim připomínkám", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Aplikace „%@“ žádá o přístup k Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "„%@“ žádá o přístup k vašim kontaktům", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "„%@“ žádá o přístup k vašim fotografiím", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "„%@“ žádá o přístup k datům vaší domácnosti.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Aplikace %@ žádá o povolení k zpřístupnění dat blízkým Bluetooth zařízením i v případě, že ji právě nepoužíváte.", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json index 2bd33392..30d1a1b6 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json @@ -216,35 +216,40 @@ { "title": "Åbn i “%@”", "buttons": [ - "Åbn" + "Åbn", + "Åben" ], "shouldAccept": true }, { "title": "Åbn i “%@”?", "buttons": [ - "Åbn" + "Åbn", + "Åben" ], "shouldAccept": true }, { "title": "Søg i %@", "buttons": [ - "Åbn" + "Åbn", + "Åben" ], "shouldAccept": true }, { "title": "Åbn denne side i “%@”?", "buttons": [ - "Åbn" + "Åbn", + "Åben" ], "shouldAccept": true }, { "title": "Åbn i appen %@", "buttons": [ - "Åbn" + "Åbn", + "Åben" ], "shouldAccept": true }, @@ -485,5 +490,26 @@ "Tillad" ], "shouldAccept": true + }, + { + "title": "“%@” vil bruge Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "“%@” vil bruge dine hjemmedata", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Adgang til Sunhed", + "buttons": [ + + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json index c7c3fb8d..62e03927 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json @@ -590,5 +590,159 @@ "Erlauben" ], "shouldAccept": true + }, + { + "title": "Wilt u %@ toegang tot uw locatie toestaan, zelfs als u de app niet gebruikt?", + "buttons": [ + "Sta toe" + ], + "shouldAccept": true + }, + { + "title": "Wilt u %@ toegang tot uw locatie toestaan terwijl u de app gebruikt?", + "buttons": [ + "Sta toe" + ], + "shouldAccept": true + }, + { + "title": "Wilt u %@ ook toegang tot uw locatie toestaan, zelfs als u de app niet gebruikt?", + "buttons": [ + "Sta toe" + ], + "shouldAccept": true + }, + { + "title": "%@ heeft op de achtergrond uw locatie gebruikt. Geeft u toestemming om daarmee door te gaan?", + "buttons": [ + "Sta toe" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Ihren Standort zugreifen, selbst wenn Sie die App nicht benutzen?", + "buttons": [ + "Erlauben" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Ihren Standort zugreifen, wenn Sie die App benutzen?", + "buttons": [ + "Erlauben" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auch auf Ihren Standort zugreifen, wenn Sie die App nicht benutzen?", + "buttons": [ + "Erlauben" + ], + "shouldAccept": true + }, + { + "title": "„%@“ hat Ihren Standort im Hintergrund verwendet. Möchten Sie dies weiterhin erlauben?", + "buttons": [ + "Erlauben" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf das Mikrofon zugreifen?", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Ihren Kalender zugreifen?", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "„%@“ möchte auf Ihre Bewegungs- und Fitnessdaten zugreifen", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Ihre Kamera zugreifen?", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Ihre Erinnerungen zugreifen?", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Apple Music zugreifen?", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Ihre Kontakte zugreifen?", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Ihre Fotos zugreifen?", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ auf Ihre Home-Daten zugreifen?", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "„%@“ möchte für benachbarte Bluetooth-Geräte bereitstellen, auch wenn Sie die App nicht nutzen.", + "buttons": [ + "Ja" + ], + "shouldAccept": true + }, + { + "title": "Er zijn nieuwe instellingen beschikbaar. Wilt u ze nu bijwerken?", + "buttons": [ + "Nu niet" + ], + "shouldAccept": true + }, + { + "title": "Es sind neue Einstellungen verfügbar. Möchten Sie sie jetzt aktualisieren?", + "buttons": [ + "Später" + ], + "shouldAccept": true + }, + { + "title": "Aktivieren Sie Bluetooth, damit „%@“ die Verbindung zum Zubehör herstellen kann", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Darf „%@“ Ihre Gesundheitsdaten aktualisieren?", + "buttons": [ + + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json index d2f296a1..11c20a29 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json @@ -485,5 +485,96 @@ "Ναι" ], "shouldAccept": true + }, + { + "title": "Να επιτρέπεται στο «%@» η πρόσβαση στην τοποθεσία σας ακόμη και όταν δεν χρησιμοποιείτε την εφαρμογή;", + "buttons": [ + "Να επιτρέπεται" + ], + "shouldAccept": true + }, + { + "title": "Να επιτρέπεται στο «%@» η πρόσβαση στην τοποθεσία σας ενώ χρησιμοποιείτε την εφαρμογή;", + "buttons": [ + "Να επιτρέπεται" + ], + "shouldAccept": true + }, + { + "title": "Να επιτρέπεται επίσης στο «%@» η πρόσβαση στην τοποθεσία σας ακόμη και όταν δεν χρησιμοποιείτε την εφαρμογή;", + "buttons": [ + "Να επιτρέπεται" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για πρόσβαση στο μικρόφωνό σας", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για πρόσβαση στο ημερολόγιό σας", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για πρόσβαση στη δραστηριότητα κίνησης και άσκησής σας", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για πρόσβαση στην κάμερα", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για πρόσβαση στις υπομνήσεις σας", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για πρόσβαση στο Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για πρόσβαση στις επαφές σας", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για πρόσβαση στις φωτογραφίες σας", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Αίτημα από «%@» για να καθιστά δεδομένα διαθέσιμα σε κοντινές συσκευές Bluetooth ακόμη και όταν δεν χρησιμοποιείτε την εφαρμογή.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Να επιτρέπεται στο «%@» η ενημέρωση των ιατρικών δεδομένων σας.", + "buttons": [ + + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json index 8c42f9e9..499c4cc4 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json @@ -500,5 +500,19 @@ "Allow" ], "shouldAccept": true + }, + { + "title": "“%@” Would Like to Access Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "“%@” would like to make data available to nearby bluetooth devices even when you're not using the app.", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json index d092e526..a73158cb 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json @@ -479,5 +479,19 @@ "Allow" ], "shouldAccept": true + }, + { + "title": "“%@” Would Like to Access Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "“%@” would like to make data available to nearby bluetooth devices even when you're not using the app.", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json index 830ceeab..ded9b334 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json @@ -479,5 +479,19 @@ "Allow" ], "shouldAccept": true + }, + { + "title": "“%@” Would Like to Access Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "“%@” would like to make data available to nearby bluetooth devices even when you're not using the app.", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json index 3ec6ffcc..a1716001 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json @@ -138,7 +138,8 @@ { "title": "“%@” quiere acceder a tus datos de casa", "buttons": [ - "Permitir" + "Permitir", + "OK" ], "shouldAccept": true }, @@ -488,14 +489,16 @@ { "title": "“%@” desea acceder a tu actividad física y deportiva", "buttons": [ - "Permitir" + "Permitir", + "OK" ], "shouldAccept": true }, { "title": "%@ quiere que los datos estén disponibles para los dispositivos Bluetooth cercanos aunque no estés utilizando la aplicación.", "buttons": [ - "Permitir" + "Permitir", + "OK" ], "shouldAccept": true }, @@ -533,5 +536,54 @@ "Permitir" ], "shouldAccept": true + }, + { + "title": "“%@” quiere acceder a Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Iniciar sesión en App Store", + "buttons": [ + "Cancelar" + ], + "shouldAccept": true + }, + { + "title": "Iniciar sesión en Game Center", + "buttons": [ + "Cancelar" + ], + "shouldAccept": true + }, + { + "title": "Iniciar sesión en iTunes Store", + "buttons": [ + "Cancelar" + ], + "shouldAccept": true + }, + { + "title": "Iniciar sesión en iMessage", + "buttons": [ + "Cancelar" + ], + "shouldAccept": true + }, + { + "title": "Iniciar sesión en FaceTime", + "buttons": [ + "Cancelar" + ], + "shouldAccept": true + }, + { + "title": "Iniciar sesión en iCloud", + "buttons": [ + "Cancelar" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json index 8f68c32d..117f3826 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json @@ -478,5 +478,61 @@ "Salli" ], "shouldAccept": true + }, + { + "title": "Sallitko, että %@ käyttää sijaintiasi myös silloin, kun et käytä ohjelmaa?", + "buttons": [ + "Salli" + ], + "shouldAccept": true + }, + { + "title": "Sallitko, että %@ käyttää sijaintiasi silloin, kun käytät ohjelmaa?", + "buttons": [ + "Salli" + ], + "shouldAccept": true + }, + { + "title": "Saako %@ käyttää sijaintiasi silloin, kun käytät ohjelmaa?", + "buttons": [ + "Salli" + ], + "shouldAccept": true + }, + { + "title": "%@ haluaa käyttää Apple Musicia", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "%@ haluaa antaa dataa lähellä oleville Bluetooth-laitteille, vaikka et käyttäisikään ohjelmaa.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Avataanko ohjelmassa %@?", + "buttons": [ + "Avaa" + ], + "shouldAccept": true + }, + { + "title": "Avaa ohjelmassa %@", + "buttons": [ + "Avaa" + ], + "shouldAccept": true + }, + { + "title": "iTunes Storeen kirjautuminen", + "buttons": [ + "Kumoa" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json index 5b044c7a..883690ac 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json @@ -450,5 +450,19 @@ "Autoriser" ], "shouldAccept": true + }, + { + "title": "« %@ » souhaite accéder à Apple Music.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "« %@ » voudrait rendre les données disponibles pour les appareils bluetooth proches lorsque vous n’utilisez pas cette app.", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json index 2c6b5789..0ed8f077 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json @@ -443,5 +443,19 @@ "Autoriser" ], "shouldAccept": true + }, + { + "title": "« %@ » souhaite accéder à Apple Music.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "« %@ » voudrait rendre les données disponibles pour les appareils bluetooth proches lorsque vous n’utilisez pas cette app.", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json index 888b2e04..28a567e8 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json @@ -476,5 +476,26 @@ "אפשר" ], "shouldAccept": true + }, + { + "title": "לאפשר ל-״%@״ לגשת לפרטי מיקומך גם שאינך משתמש/ת ביישום?", + "buttons": [ + "אפשר" + ], + "shouldAccept": true + }, + { + "title": "״%@״ מעוניין לגשת אל Apple Music", + "buttons": [ + "אישור" + ], + "shouldAccept": true + }, + { + "title": "״%@״ מעוניין להעמיד נתונים לרשות התקני Bluetooth בסביבה אפילו כשאינך משתמש/ת ביישום.", + "buttons": [ + "אישור" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index 7a3902d3..b67832bc 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -689,5 +689,26 @@ "ठीक" ], "shouldAccept": true + }, + { + "title": "ऐप का उपयोग करते समय “%@” को आपके वर्तमान स्थान का उपयोग करने की अनुमति दें?", + "buttons": [ + "अनुमति दें" + ], + "shouldAccept": true + }, + { + "title": "“%@” Apple Music तक पहुँचना चाहता है", + "buttons": [ + "ठीक" + ], + "shouldAccept": true + }, + { + "title": "“%@” आस-पास के ब्लूटूथ उपकरणों को डेटा उपलब्ध कराना चाहता है, भले ही आप ऐप का उपयोग न कर रहे हों।", + "buttons": [ + "ठीक" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json index 23ed6bd5..d9973b3f 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json @@ -486,5 +486,12 @@ "Dozvoli" ], "shouldAccept": true + }, + { + "title": "“%@” želi pristupiti značajki Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json index fc6b466b..d68bd770 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json @@ -485,5 +485,61 @@ "Engedélyezés" ], "shouldAccept": true + }, + { + "title": "A(z) „%@” meg kívánja nyitni az Ön naptárját.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "A(z) „%@” meg kívánja nyitni az Ön mozgási és fitnesztevékenységét", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "A(z) „%@” meg kívánja nyitni az Ön emlékeztetőit.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "A(z) „%@” hozzá szeretne férni az Apple Musichoz", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "A(z) „%@” meg kívánja nyitni az Ön kontaktjait.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "A(z) „%@” meg kívánja nyitni az Ön fotóit.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "A(z) „%@” meg kívánja nyitni az Ön otthoni adatait.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Megnyitás ezzel: „%@”", + "buttons": [ + "Megnyitás" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json index a34abb25..69c5e672 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json @@ -468,5 +468,19 @@ "Izinkan" ], "shouldAccept": true + }, + { + "title": "“%@” Ingin Mengakses Apple Music", + "buttons": [ + "OKE" + ], + "shouldAccept": true + }, + { + "title": "“%@” ingin membuat data tersedia untuk perangkat bluetooth di sekitar saat Anda sedang tidak menggunakan app.", + "buttons": [ + "OKE" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json index 8b4bd3bf..e4c995db 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json @@ -506,5 +506,12 @@ "Consenti" ], "shouldAccept": true + }, + { + "title": "“%@” desidera accedere ad Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json index 2ec8e04c..6c69cd4a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json @@ -457,5 +457,26 @@ "許可" ], "shouldAccept": true + }, + { + "title": "“%@”がApple Musicへのアクセスを求めています", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "iPhoneはアクティベート\nされていません", + "buttons": [ + "無視" + ], + "shouldAccept": true + }, + { + "title": "“%@”Appで開く", + "buttons": [ + "開く" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index b65f9975..83da5b26 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -565,5 +565,47 @@ "허용" ], "shouldAccept": true + }, + { + "title": "이 App을 사용하지 않을 때에도 ‘%@’이(가) 사용자의 위치에 접근하도록 허용하겠습니까?", + "buttons": [ + "허용" + ], + "shouldAccept": true + }, + { + "title": "App을 사용하는 동안 ‘%@’이(가) 사용자의 위치에 접근하도록 허용하겠습니까?", + "buttons": [ + "허용" + ], + "shouldAccept": true + }, + { + "title": "‘%@’을(를) 사용하지 않을 때에도 해당 App이 사용자의 위치에 접근하도록 허용하곘습니까?", + "buttons": [ + "허용" + ], + "shouldAccept": true + }, + { + "title": "‘%@’이(가) Apple Music에 접근하려고 합니다.", + "buttons": [ + "승인" + ], + "shouldAccept": true + }, + { + "title": "사용자가 해당 App을 사용하고 있지 않을 때에도 ‘%@’이(가) bluetooth 기기 근처에서 데이터를 사용하려고 합니다.", + "buttons": [ + "승인" + ], + "shouldAccept": true + }, + { + "title": "%@ App에서 열기", + "buttons": [ + "열기" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json index 1ef7cca8..6d8220b7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json @@ -515,5 +515,61 @@ "Benarkan" ], "shouldAccept": true + }, + { + "title": "Benarkan “%@” untuk mengakses lokasi anda walaupun apabila anda tidak menggunakan aplikasi?", + "buttons": [ + "Benarkan" + ], + "shouldAccept": true + }, + { + "title": "Benarkan “%@” untuk mengakses lokasi anda semasa anda menggunakan aplikasi?", + "buttons": [ + "Benarkan" + ], + "shouldAccept": true + }, + { + "title": "Benarkan “%@” untuk turut mengakses lokasi anda walaupun apabila anda tidak menggunakan aplikasi?", + "buttons": [ + "Benarkan" + ], + "shouldAccept": true + }, + { + "title": "“%@” Mahu Mengakses Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "“%@” mahu menyediakan data kepada peranti bluetooth berdekatan walaupun anda tidak menggunakan aplikasi.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "“%@” Mahu Menambahkan Konfigurasi VPN", + "buttons": [ + "Benarkan" + ], + "shouldAccept": true + }, + { + "title": "Aktifkan Bluetooth untuk Membenarkan “%@” untuk Bersambung ke Aksesori", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Daftar masuk ke FaceTime", + "buttons": [ + "Batal" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json index 2df099e2..5555a9d3 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json @@ -478,5 +478,47 @@ "Sta toe" ], "shouldAccept": true + }, + { + "title": "%@ wil toegang tot Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "'%@' wil toegang tot uw woninggegevens", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "%@ wil gegevens beschikbaar stellen voor Bluetooth-apparaten in de buurt, ook als de app niet gebruikt.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "%@ wil uw netwerkinhoud filteren", + "buttons": [ + "Sta toe" + ], + "shouldAccept": true + }, + { + "title": "Log in op iCloud", + "buttons": [ + "Annuleer" + ], + "shouldAccept": true + }, + { + "title": "Sta toe dat %@ uw gezondheidsgegevens bijwerkt.", + "buttons": [ + + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json index 9993e681..b445787a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json @@ -604,5 +604,26 @@ "Tillat" ], "shouldAccept": true + }, + { + "title": "Vil du gi «%@» tilgang til plasseringen din mens du bruker appen?", + "buttons": [ + "Tillat" + ], + "shouldAccept": true + }, + { + "title": "«%@» vil ha tilgang til Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "«%@» ønsker å gjøre data tilgjengelig for bluetooth-enheter i nærheten selv om appen ikke er i bruk.", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json index 63eac105..ec77434f 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json @@ -499,5 +499,19 @@ "Pozwalaj" ], "shouldAccept": true + }, + { + "title": "Udostępniać „%@” Twoje położenie, gdy używasz programu?", + "buttons": [ + "Pozwalaj" + ], + "shouldAccept": true + }, + { + "title": "„%@” chce uzyskać dostęp do Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json index 6a09c512..541a9b6d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json @@ -506,5 +506,33 @@ "Permitir" ], "shouldAccept": true + }, + { + "title": "“%@” Deseja Ter Acesso ao Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "“%@” deseja disponibilizar dados para os dispositivos Bluetooth das redondezas até mesmo quando você não estiver usando o aplicativo.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "O iPhone não está Ativado.", + "buttons": [ + "Ignorar" + ], + "shouldAccept": true + }, + { + "title": "Acesso à Saúde", + "buttons": [ + + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json index dbe4c525..29020634 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json @@ -478,5 +478,12 @@ "Permitir" ], "shouldAccept": true + }, + { + "title": "“%@” gostaria de aceder a Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json index cdd03b88..fd1641f3 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json @@ -492,5 +492,12 @@ "Permiteți" ], "shouldAccept": true + }, + { + "title": "“%@” ar dori să acceseze Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json index 1c40c7b8..d8549138 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json @@ -598,5 +598,33 @@ "Разрешить" ], "shouldAccept": true + }, + { + "title": "Разрешить программе «%@» доступ к Вашей геопозиции, даже когда Вы не работаете с ней?", + "buttons": [ + "Разрешить" + ], + "shouldAccept": true + }, + { + "title": "Разрешить программе «%@» доступ к Вашей геопозиции, пока Вы работаете с ней?", + "buttons": [ + "Разрешить" + ], + "shouldAccept": true + }, + { + "title": "Программа «%@» использует Ваши геоданные в фоновом режиме. Продолжить разрешать это?", + "buttons": [ + "Разрешить" + ], + "shouldAccept": true + }, + { + "title": "Программа «%@» запрашивает доступ к Apple Music.", + "buttons": [ + "Разрешить" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json index d0b36e8d..15faeac0 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json @@ -618,5 +618,19 @@ "Povoliť" ], "shouldAccept": true + }, + { + "title": "Aplikácia „%@“ žiada o prístup k Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Aplikácia „%@“ žiada o prístup k dátam domova", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json index eb49dfcc..2a1f089a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json @@ -457,5 +457,12 @@ "Tillåt" ], "shouldAccept": true + }, + { + "title": "”%@” begär åtkomst till Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json index 7bfe7bb0..5ba3e68e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json @@ -506,5 +506,26 @@ "อนุญาต" ], "shouldAccept": true + }, + { + "title": "“%@” ต้องการที่จะเข้าถึง Apple Music", + "buttons": [ + "ตกลง" + ], + "shouldAccept": true + }, + { + "title": "“%@” ต้องการที่จะให้ข้อมูลพร้อมใช้กับอุปกรณ์บลูทูธใกล้เคียงแม้แต่ในเวลาที่คุณไม่ใช้แอพ", + "buttons": [ + "ตกลง" + ], + "shouldAccept": true + }, + { + "title": "“%@” ต้องการที่จะกรองเนื้อหาเครือข่าย", + "buttons": [ + "อนุญาต" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json index 3c9e0277..725efe43 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json @@ -499,5 +499,82 @@ "Tamam" ], "shouldAccept": true + }, + { + "title": "“%@” arkaplanda konumunuzu kullanıyor. Buna izin vermeyi sürdürmek istiyor musunuz?", + "buttons": [ + "İzin Ver" + ], + "shouldAccept": true + }, + { + "title": "“%@” Apple Music'e Erişmek İstiyor", + "buttons": [ + "Tamam" + ], + "shouldAccept": true + }, + { + "title": "“%@”, siz uygulamayı kullanmıyorken bile yakındaki bluetooth aygıtları için verileri kullanılabilir yapmak istiyor.", + "buttons": [ + "Tamam" + ], + "shouldAccept": true + }, + { + "title": "Dikte'yi Etkinleştir", + "buttons": [ + "Sonra" + ], + "shouldAccept": true + }, + { + "title": "“%@” Öğesinin Aksesuarlara Bağlanmasına İzin Vermek İçin Bluetooth'u Açın", + "buttons": [ + "Tamam" + ], + "shouldAccept": true + }, + { + "title": "App Store'a Giriş Yapın", + "buttons": [ + "Vazgeç" + ], + "shouldAccept": true + }, + { + "title": "Game Center'a Giriş Yapın", + "buttons": [ + "Vazgeç" + ], + "shouldAccept": true + }, + { + "title": "iTunes Store'a Giriş Yapın", + "buttons": [ + "Vazgeç" + ], + "shouldAccept": true + }, + { + "title": "iMessage'a Giriş Yapın", + "buttons": [ + "Vazgeç" + ], + "shouldAccept": true + }, + { + "title": "FaceTime'a Giriş Yapın", + "buttons": [ + "Vazgeç" + ], + "shouldAccept": true + }, + { + "title": "iCloud'a Giriş Yapın", + "buttons": [ + "Vazgeç" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json index a3d80eeb..b751a4e2 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json @@ -619,5 +619,19 @@ "ОК" ], "shouldAccept": true + }, + { + "title": "«%@» хоче отримати доступ до Apple Music", + "buttons": [ + "ОК" + ], + "shouldAccept": true + }, + { + "title": "«%@» хоче надавати доступ до даних для пристроїв Bluetooth поруч, навіть коли ви не користуєтесь цією програмою.", + "buttons": [ + "ОК" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json index 92b051a8..c4791d56 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json @@ -545,5 +545,26 @@ "Cho phép" ], "shouldAccept": true + }, + { + "title": "“%@” Muốn Truy cập Apple Music", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "“%@” muốn làm cho dữ liệu khả dụng đối với thiết bị bluetooth gần đó ngay cả khi bạn không sử dụng ứng dụng.", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, + { + "title": "Truy cập Sức khỏe", + "buttons": [ + + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json index 949a996e..480433d0 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json @@ -597,5 +597,12 @@ "允许" ], "shouldAccept": true + }, + { + "title": "“%@”想访问 Apple Music", + "buttons": [ + "好" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 89e78b9a..54c49a67 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -153,14 +153,16 @@ { "title": "新的設定檔現已可供下載。是否要立即更新?", "buttons": [ - "稍後決定" + "稍後決定", + "現在不要" ], "shouldAccept": true }, { "title": "電訊商設定更新", "buttons": [ - "稍後決定" + "稍後決定", + "現在不要" ], "shouldAccept": true }, @@ -188,14 +190,16 @@ { "title": "要啟用聽寫嗎?", "buttons": [ - "稍後決定" + "稍後決定", + "現在不要" ], "shouldAccept": true }, { "title": "啟用聽寫", "buttons": [ - "稍後決定" + "稍後決定", + "現在不要" ], "shouldAccept": true }, @@ -618,5 +622,75 @@ "允許" ], "shouldAccept": true + }, + { + "title": "要允許「%@」在你正在使用 App 時使用你的位置嗎?", + "buttons": [ + "允許" + ], + "shouldAccept": true + }, + { + "title": "「%@」要使用你的咪高風", + "buttons": [ + "好" + ], + "shouldAccept": true + }, + { + "title": "「%@」要使用你的相機", + "buttons": [ + "好" + ], + "shouldAccept": true + }, + { + "title": "「%@」要使用你的提醒事項", + "buttons": [ + "好" + ], + "shouldAccept": true + }, + { + "title": "「%@」要使用 Apple Music", + "buttons": [ + "好" + ], + "shouldAccept": true + }, + { + "title": "「%@」要使用通訊錄", + "buttons": [ + "好" + ], + "shouldAccept": true + }, + { + "title": "「%@」要使用你的相片", + "buttons": [ + "好" + ], + "shouldAccept": true + }, + { + "title": "「%@」要取用你的家庭數據", + "buttons": [ + "好" + ], + "shouldAccept": true + }, + { + "title": "允許「%@」更新你的健康數據。", + "buttons": [ + + ], + "shouldAccept": true + }, + { + "title": "「%1$@」要連接 %2$@ 帳戶", + "buttons": [ + "好" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index 263be9a1..e9d94cc1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -160,7 +160,8 @@ { "title": "電信業者設定更新", "buttons": [ - "稍後再說" + "稍後再說", + "現在不要" ], "shouldAccept": true }, @@ -188,14 +189,16 @@ { "title": "要啟用聽寫嗎?", "buttons": [ - "稍後再說" + "稍後再說", + "現在不要" ], "shouldAccept": true }, { "title": "啟用聽寫", "buttons": [ - "稍後再說" + "稍後再說", + "現在不要" ], "shouldAccept": true }, @@ -559,7 +562,8 @@ { "title": "新的設定現已可供下載。是否要立即更新?", "buttons": [ - "稍後再說" + "稍後再說", + "現在不要" ], "shouldAccept": true }, @@ -583,5 +587,19 @@ "允許" ], "shouldAccept": true + }, + { + "title": "「%@」想要取用 Apple Music", + "buttons": [ + "好" + ], + "shouldAccept": true + }, + { + "title": "「%@」想要取用您的住家資料", + "buttons": [ + "好" + ], + "shouldAccept": true } ] \ No newline at end of file From 8f7e7aaae0f8650acf7b917991498ea400525f5c Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 21 Oct 2019 16:41:02 +0300 Subject: [PATCH 04/33] ROOT_DIR -> XCODE_CORE_SIM_DIR --- Makefile | 4 +++- tools/springboard-alerts/README.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ec88d777..bcf01c76 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,9 @@ gemuse: bin/make/gemuse-libs.sh # update springboard alerts +# example of custom sim dir +# make update-alerts XCODE_CORE_SIM_DIR="/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 10.3.simruntime" update-alerts: cd tools/springboard-alerts && \ bundle install && \ - bundle exec ruby update-alerts.rb "$(ROOT_DIR)" + bundle exec ruby update-alerts.rb "$(XCODE_CORE_SIM_DIR)" diff --git a/tools/springboard-alerts/README.md b/tools/springboard-alerts/README.md index d0ed8a8b..7833775c 100644 --- a/tools/springboard-alerts/README.md +++ b/tools/springboard-alerts/README.md @@ -15,7 +15,7 @@ $ make update-alerts ``` **Collect alerts under custom directory** ``` -$ make update-alerts ROOT_DIR="/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 10.3.simruntime" +$ make update-alerts XCODE_CORE_SIM_DIR="/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 10.3.simruntime" ``` Changes will be done under `Server/Resources.xcassets/springboard-alerts/**` From 9448cc02a34ef7990b18dba15b081c631f8566a8 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 21 Oct 2019 17:06:09 +0300 Subject: [PATCH 05/33] update alerts --- .../springboard-alerts-da.dataset/alerts.json | 2 +- .../springboard-alerts-de.dataset/alerts.json | 2 +- .../springboard-alerts-el.dataset/alerts.json | 2 +- .../springboard-alerts-nl.dataset/alerts.json | 2 +- .../springboard-alerts-pt.dataset/alerts.json | 2 +- .../springboard-alerts-vi.dataset/alerts.json | 2 +- .../springboard-alerts-zh_HK.dataset/alerts.json | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json index 30d1a1b6..0e1f2274 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json @@ -508,7 +508,7 @@ { "title": "Adgang til Sunhed", "buttons": [ - + "OK" ], "shouldAccept": true } diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json index 62e03927..03716046 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json @@ -741,7 +741,7 @@ { "title": "Darf „%@“ Ihre Gesundheitsdaten aktualisieren?", "buttons": [ - + "OK" ], "shouldAccept": true } diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json index 11c20a29..871a189f 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json @@ -573,7 +573,7 @@ { "title": "Να επιτρέπεται στο «%@» η ενημέρωση των ιατρικών δεδομένων σας.", "buttons": [ - + "OK" ], "shouldAccept": true } diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json index 5555a9d3..5e5b922b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json @@ -517,7 +517,7 @@ { "title": "Sta toe dat %@ uw gezondheidsgegevens bijwerkt.", "buttons": [ - + "OK" ], "shouldAccept": true } diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json index 541a9b6d..ac990a79 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json @@ -531,7 +531,7 @@ { "title": "Acesso à Saúde", "buttons": [ - + "OK" ], "shouldAccept": true } diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json index c4791d56..32849e80 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json @@ -563,7 +563,7 @@ { "title": "Truy cập Sức khỏe", "buttons": [ - + "OK" ], "shouldAccept": true } diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 54c49a67..0f17005a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -682,7 +682,7 @@ { "title": "允許「%@」更新你的健康數據。", "buttons": [ - + "好" ], "shouldAccept": true }, From 445f36205284235af79c1ae4fbd810e31ecef5dd Mon Sep 17 00:00:00 2001 From: Ivan Nosar Date: Wed, 23 Oct 2019 11:15:07 +0300 Subject: [PATCH 06/33] Run class-dump --- .../XCAccessibilityElement.h | 3 ++- .../XCTAutomationSupport/XCElementSnapshot.h | 1 + .../XCTAutomationSession.h | 18 ++++++++++++++-- .../XCTAutomationSupport/XCTElementQuery.h | 1 + .../XCTElementQueryProcessor.h | 21 ++++++------------- .../XCTElementSnapshotRequest.h | 2 ++ .../XCTestManager_ManagerInterface-Protocol.h | 1 - 7 files changed, 28 insertions(+), 19 deletions(-) diff --git a/Server/PrivateHeaders/XCTAutomationSupport/XCAccessibilityElement.h b/Server/PrivateHeaders/XCTAutomationSupport/XCAccessibilityElement.h index bea20b47..e538fa62 100644 --- a/Server/PrivateHeaders/XCTAutomationSupport/XCAccessibilityElement.h +++ b/Server/PrivateHeaders/XCTAutomationSupport/XCAccessibilityElement.h @@ -39,11 +39,12 @@ + (id)deviceElement; + (id)elementWithAXUIElement:(struct __AXUIElement *)arg1; + (id)elementWithProcessIdentifier:(NSInteger)arg1; ++ (id)elementWithProcessIdentifier:(NSInteger)arg1 originPlatform:(NSUInteger)arg2; + (id)mockElementWithProcessIdentifier:(NSInteger)arg1; + (id)mockElementWithProcessIdentifier:(NSInteger)arg1 originPlatform:(NSUInteger)arg2; + (id)mockElementWithProcessIdentifier:(NSInteger)arg1 originPlatform:(NSUInteger)arg2 payload:(id)arg3; + (id)mockElementWithProcessIdentifier:(NSInteger)arg1 payload:(id)arg2; -- (id)initWithAXUIElement:(struct __AXUIElement *)arg1 elementType:(NSUInteger)arg2; +- (id)initWithAXUIElement:(struct __AXUIElement *)arg1 elementType:(NSUInteger)arg2 originPlatform:(NSUInteger)arg3; - (id)initWithToken:(id)arg1 elementOrHash:(NSUInteger)arg2 elementID:(NSUInteger)arg3 pid:(NSInteger)arg4 elementType:(NSUInteger)arg5 originPlatform:(NSUInteger)arg6; @end diff --git a/Server/PrivateHeaders/XCTAutomationSupport/XCElementSnapshot.h b/Server/PrivateHeaders/XCTAutomationSupport/XCElementSnapshot.h index 26d5d4b5..ccb77cbb 100644 --- a/Server/PrivateHeaders/XCTAutomationSupport/XCElementSnapshot.h +++ b/Server/PrivateHeaders/XCTAutomationSupport/XCElementSnapshot.h @@ -111,6 +111,7 @@ @property(readonly) CGRect visibleFrame; + (id)axAttributesForElementSnapshotKeyPaths:(id)arg1 isMacOS:(BOOL)arg2; ++ (id)axAttributesForFaultingPropertiesOnMacOS:(BOOL)arg1; + (id)axAttributesForSnapshotAttributes:(id)arg1 isMacOS:(BOOL)arg2; + (NSUInteger)elementTypeForAccessibilityElement:(id)arg1 usingAXAttributes_iOS:(id)arg2 useLegacyElementType:(BOOL)arg3; + (NSUInteger)elementTypeForAccessibilityElement:(id)arg1 usingAXAttributes_macOS:(id)arg2 useLegacyElementType:(BOOL)arg3; diff --git a/Server/PrivateHeaders/XCTAutomationSupport/XCTAutomationSession.h b/Server/PrivateHeaders/XCTAutomationSupport/XCTAutomationSession.h index 85fedbcc..ff1e682e 100644 --- a/Server/PrivateHeaders/XCTAutomationSupport/XCTAutomationSession.h +++ b/Server/PrivateHeaders/XCTAutomationSupport/XCTAutomationSession.h @@ -16,13 +16,19 @@ #import "XCTAutomationTarget-Protocol.h" #import "XCTConnectionAccepting-Protocol.h" +#import "XCTElementSnapshotAttributeDataSource-Protocol.h" +#import "XCTElementSnapshotProvider-Protocol.h" #import "XCTRemoteApplicationAutomationTarget-Protocol.h" @class DTXConnection, DTXProxyChannel, NSMutableArray, NSString, XCTAnimationsIdleNotifier, XCTCapabilities, XCTElementQueryProcessor, XCTMainRunLoopIdleNotifier; -@protocol OS_dispatch_queue; +@protocol OS_dispatch_queue, XCTElementSnapshotProvider> +@interface XCTAutomationSession : NSObject { + id _dataSource; NSMutableArray *_connections; XCTElementQueryProcessor *_queryProcessor; NSObject *_queue; @@ -33,14 +39,18 @@ XCTCapabilities *_remoteInterfaceCapabilities; } +@property(readonly) BOOL allowsRemoteAccess; @property(readonly) XCTAnimationsIdleNotifier *animationIdleNotifier; @property(readonly) NSMutableArray *connections; +@property(readonly) __weak id dataSource; @property(readonly) DTXConnection *dtxConnection; @property(readonly) DTXProxyChannel *proxyChannel; @property(readonly) XCTElementQueryProcessor *queryProcessor; @property(readonly) NSObject *queue; @property(retain) XCTCapabilities *remoteInterfaceCapabilities; @property(readonly) XCTMainRunLoopIdleNotifier *runLoopIdleMonitor; +@property(readonly) BOOL supportsHostedViewCoordinateTransformations; +@property(readonly) BOOL usePointTransformationsForFrameConversions; + (id)capabilitiesBuilder; - (id)_XCT_attributesForElement:(id)arg1 attributes:(id)arg2; @@ -49,13 +59,17 @@ - (id)_XCT_notifyWhenAnimationsAreIdle; - (id)_XCT_notifyWhenMainRunLoopIsIdle; - (BOOL)acceptNewConnection:(id)arg1; +- (id)attributesForElement:(id)arg1 attributes:(id)arg2 error:(id *)arg3; - (void)attributesForElement:(id)arg1 attributes:(id)arg2 reply:(CDUnknownBlockType)arg3; - (void)exchangeCapabilities:(id)arg1 reply:(CDUnknownBlockType)arg2; - (void)fetchMatchesForQuery:(id)arg1 reply:(CDUnknownBlockType)arg2; +- (id)initWithDataSource:(id)arg1; - (void)listenForRemoteConnectionViaSerializedTransportWrapper:(id)arg1 completion:(CDUnknownBlockType)arg2; - (void)notifyWhenAnimationsAreIdle:(CDUnknownBlockType)arg1; - (void)notifyWhenMainRunLoopIsIdle:(CDUnknownBlockType)arg1; +- (id)parameterizedAttribute:(id)arg1 forElement:(id)arg2 parameter:(id)arg3 error:(id *)arg4; - (void)requestHostAppExecutableNameWithReply:(CDUnknownBlockType)arg1; +- (id)snapshotForElement:(id)arg1 attributes:(id)arg2 parameters:(id)arg3 timeoutControls:(id)arg4 error:(id *)arg5; @end diff --git a/Server/PrivateHeaders/XCTAutomationSupport/XCTElementQuery.h b/Server/PrivateHeaders/XCTAutomationSupport/XCTElementQuery.h index 85cced89..e7d38fe8 100644 --- a/Server/PrivateHeaders/XCTAutomationSupport/XCTElementQuery.h +++ b/Server/PrivateHeaders/XCTAutomationSupport/XCTElementQuery.h @@ -67,6 +67,7 @@ - (id)initWithRootElement:(id)arg1 transformers:(id)arg2 options:(NSUInteger)arg3; - (id)initWithRootElement:(id)arg1 transformers:(id)arg2 options:(NSUInteger)arg3 isMacOS:(BOOL)arg4; - (id)initWithRootElement:(id)arg1 transformers:(id)arg2 options:(NSUInteger)arg3 isMacOS:(BOOL)arg4 timeoutControls:(id)arg5; +- (id)matchingSnapshotsInSnapshotTree:(id)arg1 relatedElements:(id *)arg2 noMatchesMessage:(id *)arg3 error:(id *)arg4; - (id)matchingSnapshotsWithRelatedElements:(id *)arg1 noMatchesMessage:(id *)arg2 error:(id *)arg3; diff --git a/Server/PrivateHeaders/XCTAutomationSupport/XCTElementQueryProcessor.h b/Server/PrivateHeaders/XCTAutomationSupport/XCTElementQueryProcessor.h index 5629154b..37c892c9 100644 --- a/Server/PrivateHeaders/XCTAutomationSupport/XCTElementQueryProcessor.h +++ b/Server/PrivateHeaders/XCTAutomationSupport/XCTElementQueryProcessor.h @@ -14,32 +14,23 @@ #import -#import "XCTElementSnapshotAttributeDataSource-Protocol.h" -#import "XCTElementSnapshotProvider-Protocol.h" - -@class NSString, XCTCapabilities; -@protocol XCTElementSnapshotProvider; +@class XCTCapabilities; +@protocol XCTElementSnapshotProvider> +@interface XCTElementQueryProcessor : NSObject { - id _snapshotProvider; + id _dataSource; XCTCapabilities *_remoteInterfaceCapabilities; } -@property(readonly) BOOL allowsRemoteAccess; +@property(readonly) __weak id dataSource; @property(retain) XCTCapabilities *remoteInterfaceCapabilities; -@property __weak id snapshotProvider; -@property(readonly) BOOL supportsHostedViewCoordinateTransformations; -@property(readonly) BOOL usePointTransformationsForFrameConversions; -- (id)attributesForElement:(id)arg1 attributes:(id)arg2 error:(id *)arg3; - (void)fetchMatchesForQuery:(id)arg1 clientCapabilities:(id)arg2 reply:(CDUnknownBlockType)arg3; -- (id)parameterizedAttribute:(id)arg1 forElement:(id)arg2 parameter:(id)arg3 error:(id *)arg4; -- (id)snapshotForElement:(id)arg1 attributes:(id)arg2 parameters:(id)arg3 timeoutControls:(id)arg4 error:(id *)arg5; - +- (id)initWithDataSource:(id)arg1; @end diff --git a/Server/PrivateHeaders/XCTAutomationSupport/XCTElementSnapshotRequest.h b/Server/PrivateHeaders/XCTAutomationSupport/XCTElementSnapshotRequest.h index ce97ca8d..b6cd1c56 100644 --- a/Server/PrivateHeaders/XCTAutomationSupport/XCTElementSnapshotRequest.h +++ b/Server/PrivateHeaders/XCTAutomationSupport/XCTElementSnapshotRequest.h @@ -19,6 +19,7 @@ @interface XCTElementSnapshotRequest : NSObject { + BOOL _preserveRemoteElementPlaceholders; BOOL _loadResult; BOOL _hasLoaded; XCAccessibilityElement *_element; @@ -42,6 +43,7 @@ @property(retain) NSError *loadError; @property BOOL loadResult; @property(copy) NSDictionary *parameters; +@property BOOL preserveRemoteElementPlaceholders; @property(readonly) NSObject *queue; @property(readonly) XCTTimeoutControls *timeoutControls; diff --git a/Server/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h b/Server/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h index 083e5245..1b0c2222 100644 --- a/Server/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h +++ b/Server/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h @@ -9,7 +9,6 @@ #import #import #import "CDStructures.h" -#import "../XCTAutomationSupport/XCUIElementSnapshotRequestResult.h" @protocol OS_dispatch_queue; @protocol OS_xpc_object; From 09c745ecc474c5167969e4d6ae07f7ef6b94614e Mon Sep 17 00:00:00 2001 From: Ivan Nosar Date: Wed, 23 Oct 2019 11:33:35 +0300 Subject: [PATCH 07/33] Add missed header --- .../XCTest/XCTestManager_ManagerInterface-Protocol.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h b/Server/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h index 1b0c2222..083e5245 100644 --- a/Server/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h +++ b/Server/PrivateHeaders/XCTest/XCTestManager_ManagerInterface-Protocol.h @@ -9,6 +9,7 @@ #import #import #import "CDStructures.h" +#import "../XCTAutomationSupport/XCUIElementSnapshotRequestResult.h" @protocol OS_dispatch_queue; @protocol OS_xpc_object; From 339c8f892348958cc91e815615fd7e4689aa00cd Mon Sep 17 00:00:00 2001 From: AndreyMaslennikov Date: Wed, 23 Oct 2019 14:24:37 +0300 Subject: [PATCH 08/33] Dismiss "Allow notifications" alert --- .../springboard-alerts-ar.dataset/alerts.json | 3 ++- .../springboard-alerts-ca.dataset/alerts.json | 6 ++++-- .../springboard-alerts-cs.dataset/alerts.json | 8 ++++++++ .../springboard-alerts-da.dataset/alerts.json | 6 ++++-- .../springboard-alerts-de.dataset/alerts.json | 7 +++++++ .../springboard-alerts-el.dataset/alerts.json | 3 ++- .../springboard-alerts-en.dataset/alerts.json | 3 ++- .../springboard-alerts-en_AU.dataset/alerts.json | 3 ++- .../springboard-alerts-en_GB.dataset/alerts.json | 3 ++- .../springboard-alerts-es.dataset/alerts.json | 3 ++- .../springboard-alerts-es_419.dataset/alerts.json | 3 ++- .../springboard-alerts-fi.dataset/alerts.json | 3 ++- .../springboard-alerts-fr.dataset/alerts.json | 3 ++- .../springboard-alerts-fr_CA.dataset/alerts.json | 3 ++- .../springboard-alerts-he.dataset/alerts.json | 7 +++++++ .../springboard-alerts-hi.dataset/alerts.json | 3 ++- .../springboard-alerts-hr.dataset/alerts.json | 3 ++- .../springboard-alerts-hu.dataset/alerts.json | 8 ++++++++ .../springboard-alerts-id.dataset/alerts.json | 3 ++- .../springboard-alerts-it.dataset/alerts.json | 7 +++++++ .../springboard-alerts-ja.dataset/alerts.json | 7 +++++++ .../springboard-alerts-ko.dataset/alerts.json | 3 ++- .../springboard-alerts-ms.dataset/alerts.json | 3 ++- .../springboard-alerts-nl.dataset/alerts.json | 14 ++++++++++++++ .../springboard-alerts-no.dataset/alerts.json | 3 ++- .../springboard-alerts-pl.dataset/alerts.json | 3 ++- .../springboard-alerts-pt.dataset/alerts.json | 7 +++++++ .../springboard-alerts-pt_PT.dataset/alerts.json | 3 ++- .../springboard-alerts-ro.dataset/alerts.json | 3 ++- .../springboard-alerts-ru.dataset/alerts.json | 3 ++- .../springboard-alerts-sk.dataset/alerts.json | 3 ++- .../springboard-alerts-sv.dataset/alerts.json | 3 ++- .../springboard-alerts-th.dataset/alerts.json | 3 ++- .../springboard-alerts-tr.dataset/alerts.json | 3 ++- .../springboard-alerts-uk.dataset/alerts.json | 3 ++- .../springboard-alerts-vi.dataset/alerts.json | 7 +++++++ .../springboard-alerts-zh_CN.dataset/alerts.json | 7 +++++++ .../springboard-alerts-zh_HK.dataset/alerts.json | 3 ++- .../springboard-alerts-zh_TW.dataset/alerts.json | 3 ++- 39 files changed, 141 insertions(+), 31 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json index 9e8f5cb1..d854d808 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json @@ -461,7 +461,8 @@ { "title": "يود \"%@\" إرسال الإشعارات إليك", "buttons": [ - "السماح" + "السماح", + "موافق" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json index eb6aeed1..1688bc32 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json @@ -525,14 +525,16 @@ { "title": "\"%@\" et vol enviar notificacions", "buttons": [ - "Permetre" + "Permetre", + "OK" ], "shouldAccept": true }, { "title": "“%@” et vol enviar notificacions", "buttons": [ - "Permetre" + "Permetre", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json index 80fde5d4..be48991d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json @@ -487,6 +487,14 @@ ], "shouldAccept": true }, + { + "title": "„%@“ vám chce zasílat oznámení.", + "buttons": [ + "Povolit", + "OK" + ], + "shouldAccept": true + }, { "title": "„%@“ vám chce zasílat oznámení", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json index 0e1f2274..4890cf5f 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json @@ -473,14 +473,16 @@ { "title": "\"%@\" vil gerne sende dig meddelelser", "buttons": [ - "Tillad" + "Tillad", + "OK" ], "shouldAccept": true }, { "title": "“%@” vil gerne sende dig meddelelser", "buttons": [ - "Tillad" + "Tillad", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json index 03716046..3f7daed4 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json @@ -591,6 +591,13 @@ ], "shouldAccept": true }, + { + "title": "Darf „%@“ Ihnen Mitteilungen senden?", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, { "title": "Wilt u %@ toegang tot uw locatie toestaan, zelfs als u de app niet gebruikt?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json index 871a189f..386efdfd 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json @@ -482,7 +482,8 @@ { "title": "Αίτημα από «%@» για να σας στέλνει γνωστοποιήσεις", "buttons": [ - "Ναι" + "Ναι", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json index 499c4cc4..a2ed172c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json @@ -294,7 +294,8 @@ { "title": "“%@” Would Like to Send You Notifications", "buttons": [ - "Allow" + "Allow", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json index a73158cb..9efc4338 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json @@ -476,7 +476,8 @@ { "title": "“%@” Would Like to Send You Notifications", "buttons": [ - "Allow" + "Allow", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json index ded9b334..fa26ce6d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json @@ -476,7 +476,8 @@ { "title": "“%@” Would Like to Send You Notifications", "buttons": [ - "Allow" + "Allow", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json index a1716001..e048980d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json @@ -533,7 +533,8 @@ { "title": "“%@” quiere enviarte notificaciones", "buttons": [ - "Permitir" + "Permitir", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json index 8ec53e89..38b6a0a5 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json @@ -461,7 +461,8 @@ { "title": "“%@” quiere enviarte notificaciones", "buttons": [ - "Permitir" + "Permitir", + "OK" ], "shouldAccept": true } diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json index 117f3826..f17b7405 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json @@ -475,7 +475,8 @@ { "title": "%@ haluaa lähettää sinulle ilmoituksia", "buttons": [ - "Salli" + "Salli", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json index 883690ac..71be4031 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json @@ -447,7 +447,8 @@ { "title": "Autorisez-vous « %@ » à vous envoyer des notifications ?", "buttons": [ - "Autoriser" + "Autoriser", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json index 0ed8f077..80782976 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json @@ -440,7 +440,8 @@ { "title": "Autorisez-vous « %@ » à vous envoyer des notifications?", "buttons": [ - "Autoriser" + "Autoriser", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json index 28a567e8..92ed63f3 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json @@ -477,6 +477,13 @@ ], "shouldAccept": true }, + { + "title": "״%@״ מעוניין לשלוח לך עדכונים", + "buttons": [ + "אישור" + ], + "shouldAccept": true + }, { "title": "לאפשר ל-״%@״ לגשת לפרטי מיקומך גם שאינך משתמש/ת ביישום?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index b67832bc..4321aa99 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -672,7 +672,8 @@ { "title": "“%@” आपको सूचनाएँ भेजना चाहता है", "buttons": [ - "अनुमति दें" + "अनुमति दें", + "ठीक" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json index d9973b3f..f85bd660 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json @@ -483,7 +483,8 @@ { "title": "“%@” vam želi slati obavijesti", "buttons": [ - "Dozvoli" + "Dozvoli", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json index d68bd770..6870b44c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json @@ -486,6 +486,14 @@ ], "shouldAccept": true }, + { + "title": "A(z) „%@” értesítéseket kíván Önnek küldeni", + "buttons": [ + "Engedélyezés", + "OK" + ], + "shouldAccept": true + }, { "title": "A(z) „%@” meg kívánja nyitni az Ön naptárját.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json index 69c5e672..65c1acac 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json @@ -465,7 +465,8 @@ { "title": "“%@” Ingin Mengirimi Anda Pemberitahuan", "buttons": [ - "Izinkan" + "Izinkan", + "OKE" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json index e4c995db..18ca2ad6 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json @@ -500,6 +500,13 @@ ], "shouldAccept": true }, + { + "title": "“%@” vorrebbe inviarti notifiche", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, { "title": "Vuoi consentire a “%@” di accedere alla tua posizione mentre utilizzi l'app?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json index 6c69cd4a..23ab1381 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json @@ -458,6 +458,13 @@ ], "shouldAccept": true }, + { + "title": "“%@”は\n通知を送信します。\nよろしいですか?", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, { "title": "“%@”がApple Musicへのアクセスを求めています", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index 83da5b26..47adc520 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -555,7 +555,8 @@ { "title": "‘%@’에서 알림을 보내고자 합니다.", "buttons": [ - "허용" + "허용", + "확인" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json index 6d8220b7..6c8f7d99 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json @@ -512,7 +512,8 @@ { "title": "“%@” Mahu Menghantar Pemberitahuan Kepada Anda", "buttons": [ - "Benarkan" + "Benarkan", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json index 5e5b922b..73070cf2 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json @@ -479,6 +479,20 @@ ], "shouldAccept": true }, + { + "title": "%@ wil je meldingen sturen", + "buttons": [ + "Sta toe" + ], + "shouldAccept": true + }, + { + "title": "%@ wil u berichten sturen", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, { "title": "%@ wil toegang tot Apple Music", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json index b445787a..22c0635d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json @@ -594,7 +594,8 @@ { "title": "«%@» vil sende deg varslinger", "buttons": [ - "Tillat" + "Tillat", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json index ec77434f..1da71ef8 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json @@ -489,7 +489,8 @@ { "title": "„%@” chce wysyłać Ci powiadomienia", "buttons": [ - "Pozwalaj" + "Pozwalaj", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json index ac990a79..67003975 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json @@ -507,6 +507,13 @@ ], "shouldAccept": true }, + { + "title": "“%@” Deseja Enviar-lhe Notificações", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, { "title": "“%@” Deseja Ter Acesso ao Apple Music", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json index 29020634..47a6ea16 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json @@ -475,7 +475,8 @@ { "title": "“%@” gostaria de lhe enviar notificações", "buttons": [ - "Permitir" + "Permitir", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json index fd1641f3..70ab4aa3 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json @@ -489,7 +489,8 @@ { "title": "“%@” ar dori să vă trimită notificări", "buttons": [ - "Permiteți" + "Permiteți", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json index d8549138..872691ab 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json @@ -588,7 +588,8 @@ { "title": "Программа «%@» запрашивает разрешение на отправку Вам уведомлений.", "buttons": [ - "Разрешить" + "Разрешить", + "ОК" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json index 15faeac0..5caac924 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json @@ -615,7 +615,8 @@ { "title": "„%@“ vám chce posielať hlásenia", "buttons": [ - "Povoliť" + "Povoliť", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json index 2a1f089a..d8478403 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json @@ -454,7 +454,8 @@ { "title": "”%@” vill skicka notiser till dig", "buttons": [ - "Tillåt" + "Tillåt", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json index 5ba3e68e..3f949a96 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json @@ -503,7 +503,8 @@ { "title": "“%@” ต้องการที่จะส่งการแจ้งเตือนให้คุณ", "buttons": [ - "อนุญาต" + "อนุญาต", + "ตกลง" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json index 725efe43..d14cbc9b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json @@ -489,7 +489,8 @@ { "title": "“%@” Size Bildirimler Göndermek İstiyor", "buttons": [ - "İzin Ver" + "İzin Ver", + "Tamam" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json index b751a4e2..81916177 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json @@ -609,7 +609,8 @@ { "title": "«%@» хоче надсилати вам сповіщення", "buttons": [ - "Дозволити" + "Дозволити", + "OK" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json index 32849e80..b82d400c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json @@ -546,6 +546,13 @@ ], "shouldAccept": true }, + { + "title": "“%@” Muốn Gửi cho Bạn Thông báo", + "buttons": [ + "OK" + ], + "shouldAccept": true + }, { "title": "“%@” Muốn Truy cập Apple Music", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json index 480433d0..0ef123ab 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json @@ -598,6 +598,13 @@ ], "shouldAccept": true }, + { + "title": "“%@”想给您发送推送通知", + "buttons": [ + "好" + ], + "shouldAccept": true + }, { "title": "“%@”想访问 Apple Music", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 0f17005a..47716f89 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -619,7 +619,8 @@ { "title": "「%@」要傳送通知", "buttons": [ - "允許" + "允許", + "好" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index e9d94cc1..848daaf7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -584,7 +584,8 @@ { "title": "「%@」想要傳送通知", "buttons": [ - "允許" + "允許", + "好" ], "shouldAccept": true }, From aa35fc3b2763a17942f4eca9adbfbcf1da2daf07 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Thu, 24 Oct 2019 16:25:59 +0300 Subject: [PATCH 09/33] Add Xcode 11.1 and Xcode 11.2 to the test matrix --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1eb3e93d..b1b80fba 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -37,6 +37,12 @@ jobs: Mojave-Xcode-11.0: IMAGE_POOL: 'macOS-10.14' XCODE_VERSION: '11' + Mojave-Xcode-11.1: + IMAGE_POOL: 'macOS-10.14' + XCODE_VERSION: '11.1' + Mojave-Xcode-11.2: + IMAGE_POOL: 'macOS-10.14' + XCODE_VERSION: '11.2' pool: vmImage: $(IMAGE_POOL) variables: From 84a481030501838105e6de5aea282967dcbb990a Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Fri, 25 Oct 2019 13:43:44 +0300 Subject: [PATCH 10/33] Remove dangerous SpringBoard alerts --- .../springboard-alerts-ar.dataset/alerts.json | 14 ------ .../springboard-alerts-ca.dataset/alerts.json | 21 -------- .../springboard-alerts-cs.dataset/alerts.json | 14 ------ .../springboard-alerts-da.dataset/alerts.json | 14 ------ .../springboard-alerts-de.dataset/alerts.json | 14 ------ .../springboard-alerts-el.dataset/alerts.json | 14 ------ .../springboard-alerts-en.dataset/alerts.json | 14 ------ .../alerts.json | 14 ------ .../alerts.json | 14 ------ .../springboard-alerts-es.dataset/alerts.json | 21 -------- .../alerts.json | 14 ------ .../springboard-alerts-fi.dataset/alerts.json | 14 ------ .../springboard-alerts-fr.dataset/alerts.json | 14 ------ .../alerts.json | 14 ------ .../springboard-alerts-he.dataset/alerts.json | 14 ------ .../springboard-alerts-hi.dataset/alerts.json | 28 ----------- .../springboard-alerts-hr.dataset/alerts.json | 14 ------ .../springboard-alerts-hu.dataset/alerts.json | 14 ------ .../springboard-alerts-id.dataset/alerts.json | 14 ------ .../springboard-alerts-it.dataset/alerts.json | 14 ------ .../springboard-alerts-ja.dataset/alerts.json | 14 ------ .../springboard-alerts-ko.dataset/alerts.json | 16 ------ .../springboard-alerts-ms.dataset/alerts.json | 21 -------- .../springboard-alerts-nl.dataset/alerts.json | 14 ------ .../springboard-alerts-no.dataset/alerts.json | 14 ------ .../springboard-alerts-pl.dataset/alerts.json | 21 -------- .../springboard-alerts-pt.dataset/alerts.json | 21 -------- .../alerts.json | 14 ------ .../springboard-alerts-ro.dataset/alerts.json | 14 ------ .../springboard-alerts-ru.dataset/alerts.json | 21 -------- .../springboard-alerts-sk.dataset/alerts.json | 21 -------- .../springboard-alerts-sv.dataset/alerts.json | 14 ------ .../springboard-alerts-th.dataset/alerts.json | 14 ------ .../springboard-alerts-tr.dataset/alerts.json | 14 ------ .../springboard-alerts-uk.dataset/alerts.json | 16 ------ .../springboard-alerts-vi.dataset/alerts.json | 14 ------ .../alerts.json | 28 ----------- .../alerts.json | 28 ----------- .../alerts.json | 49 ------------------- .../alerts.json | 28 ----------- 40 files changed, 704 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json index d854d808..4b11b91b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "سيتم إرسال بعض بيانات %@ إلى Apple بهدف معالجة طلباتك.", - "buttons": [ - "موافق" - ], - "shouldAccept": true - }, { "title": "يرغب \"%@\" بالوصول إلى الميكروفون", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "سيتم إرسال بيانات الكلام من هذا التطبيق إلى Apple بهدف معالجة طلباتك. كما أن هذا سيساعد Apple على تحسين تقنية التعرف على الكلام.", - "buttons": [ - "موافق" - ], - "shouldAccept": true - }, { "title": "يرغب \"%@\" في الوصول إلى نشاط الحركة واللياقة الخاصة بك", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json index 1688bc32..5da42951 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json @@ -46,13 +46,6 @@ ], "shouldAccept": true }, - { - "title": "Algunes dades de %@ s’enviaran a Apple per processar les teves peticions.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” vol accedir al micròfon", "buttons": [ @@ -74,13 +67,6 @@ ], "shouldAccept": true }, - { - "title": "Les dades de veu d’aquesta app s’enviaran a Apple per processar les teves peticions i perquè Apple pugui millorar la tecnologia de reconeixement de veu.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” vol accedir a la teva activitat física", "buttons": [ @@ -480,13 +466,6 @@ ], "shouldAccept": true }, - { - "title": "Les dades de veu d’aquesta aplicació s’enviaran a Apple per processar les teves peticions i perquè Apple pugui millorar la tecnologia de reconeixement de veu.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” vol posar les dades a disposició dels dispositius Bluetooth propers fins i tot quan no utilitzis l’aplicació.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json index be48991d..43fd7f68 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json @@ -37,13 +37,6 @@ ], "shouldAccept": true }, - { - "title": "Některá data aplikace %@ budou odeslána do Apple na pomoc se zpracováním vašich požadavků.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Aplikace „%@“ žádá o přístup k mikrofonu", "buttons": [ @@ -65,13 +58,6 @@ ], "shouldAccept": true }, - { - "title": "Řečová data z této aplikace budou odeslána do Apple na pomoc se zpracováním vašich požadavků a vylepšováním technologie rozpoznávání řeči.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Aplikace „%@“ žádá o přístup k vaší pohybové a kondiční aktivitě", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json index 4890cf5f..3706709d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Nogle af dine %@-data sendes til Apple for at behandle dine anmodninger.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” vil bruge mikrofonen", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Talegenkendelsesdata fra denne app, sendes til Apple til behandling af dine anmodninger. Det hjælper desuden Apple med at forbedre sin talegenkendelsesteknologi.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” vil bruge din fysiske aktivitet og din træningsaktivitet", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json index 3f7daed4..00a87055 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Einige deiner Daten von %@ werden an Apple gesendet, um deine Anfragen zu verarbeiten.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@“ möchte auf das Mikrofon zugreifen", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Sprachdaten von dieser App werden an Apple gesendet, um deine Anfragen zu verarbeiten. Außerdem werden sie verwendet, um Apple beim Verbessern der Spracherkennungstechnologie zu unterstützen.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@“ möchte auf deine Bewegungs- und Fitnessdaten zugreifen", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json index 386efdfd..4bfd50a7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Κάποια από τα δεδομένα σας στην εφαρμογή «%@» θα αποστέλλονται στην Apple για επεξεργασία των αιτημάτων σας.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Αίτημα από «%@» για πρόσβαση στο Μικρόφωνο", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Τα φωνητικά δεδομένα από αυτήν την εφαρμογή θα αποστέλλονται στην Apple για επεξεργασία των αιτημάτων σας. Αυτό θα βοηθήσει επίσης την Apple να βελτιώσει την τεχνολογία της ως προς την αναγνώριση ομιλίας.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Αίτημα από «%@» για πρόσβαση στη Δραστηριότητα κίνησης και άσκησής σας", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json index a2ed172c..c6440dd9 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Some of your %@ data will be sent to Apple to process your requests.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Access the Microphone", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Speech data from this app will be sent to Apple to process your requests. This will also help Apple improve its speech recognition technology.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Access Your Motion & Fitness Activity", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json index 9efc4338..1284310b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Some of your %@ data will be sent to Apple to process your requests.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Access the Microphone", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Speech data from this app will be sent to Apple to process your requests. This will also help Apple improve its speech recognition technology.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Access Your Motion & Fitness Activity", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json index fa26ce6d..b1445076 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Some of your %@ data will be sent to Apple to process your requests.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Access the Microphone", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Speech data from this app will be sent to Apple to process your requests. This will also help Apple improve its speech recognition technology.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Access Your Motion & Fitness Activity", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json index e048980d..e457fafb 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Algunos de tus datos en %@ se enviarán a Apple para procesar tus solicitudes.", - "buttons": [ - "Permitir" - ], - "shouldAccept": true - }, { "title": "“%@” quiere acceder al micrófono", "buttons": [ @@ -75,13 +68,6 @@ ], "shouldAccept": true }, - { - "title": "Los datos de voz de esta app se enviarán a Apple para procesar tus solicitudes. Estos datos también ayudan a Apple a mejorar su tecnología de reconocimiento de voz.", - "buttons": [ - "Permitir" - ], - "shouldAccept": true - }, { "title": "“%@” quiere acceder a tu actividad física y deportiva", "buttons": [ @@ -479,13 +465,6 @@ ], "shouldAccept": true }, - { - "title": "Los datos de voz de esta aplicación se enviarán a Apple para procesar tus solicitudes. Estos datos también ayudan a Apple a mejorar su tecnología de reconocimiento de voz.", - "buttons": [ - "Permitir" - ], - "shouldAccept": true - }, { "title": "“%@” desea acceder a tu actividad física y deportiva", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json index 38b6a0a5..f027f2c1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Se enviará a Apple parte de tus datos de %@ para procesar tus solicitudes.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” quiere acceder al micrófono", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Se enviarán a Apple los datos de voz de esta app para procesar tus solicitudes. Esto ayudará a que Apple mejore su tecnología de reconocimiento de voz.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” quiere acceder a tu condición y actividad física", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json index f17b7405..cbf63ea1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json @@ -38,13 +38,6 @@ ], "shouldAccept": true }, - { - "title": "Osa apin %@ tiedoista lähetetään Applelle pyyntöjesi käsittelyä varten.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ haluaa käyttää mikrofonia", "buttons": [ @@ -66,13 +59,6 @@ ], "shouldAccept": true }, - { - "title": "Tämän apin puhetiedot lähetetään Applelle pyyntöjesi käsittelyä varten. Tämä auttaa myös Applea parantamaan puheentunnistusteknologiaansa.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ haluaa käyttää liikunta- ja kuntoilutietojasi", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json index 71be4031..995e0a4c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Certaines de vos données %@ seront envoyées à Apple pour traiter vos demandes.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "« %@ » souhaite accéder au micro.", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Les données vocales recueillies par cette app seront envoyées à Apple pour traiter vos demandes. Cela aidera également Apple à améliorer sa technologie en matière de reconnaissance vocale.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "« %@ » souhaite accéder à vos mouvements et vos activités physiques.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json index 80782976..6f8ff651 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Certaines de vos données %@ seront envoyées à Apple pour traiter vos demandes.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "« %@ » souhaite accéder au micro.", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Les données vocales de cette app seront envoyées à Apple pour traiter vos demandes. Cela permettra aussi à Apple d’améliorer sa technologie de reconnaissance vocale.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "« %@ » souhaite accéder à vos mouvements et à votre activité physique.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json index 92ed63f3..cf55d3dc 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "חלק מהנתונים של %@ יישלחו אל Apple לצורך עיבוד בקשותיך.", - "buttons": [ - "אישור" - ], - "shouldAccept": true - }, { "title": "״%@״ מעוניין להשתמש במיקרופון", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "נתוני דיבור מיישום זה יישלחו אל Apple לצורך עיבוד בקשותיך. הנתונים גם יעזרו ל-Apple לשפר את טכנולוגיית זיהוי הדיבור שלה.", - "buttons": [ - "אישור" - ], - "shouldAccept": true - }, { "title": "״%@״ מעוניין לגשת אל פעילות התנועה והכושר שלך", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index 4321aa99..874815e1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -44,13 +44,6 @@ ], "shouldAccept": true }, - { - "title": "आपके अनुरोधों को पूरा करने के लिए आपके %@ का कुछ डेटा Apple को भेजा जाएगा।", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, { "title": "“%@” माइक्रोफ़ोन तक पहुँचना चाहता है", "buttons": [ @@ -72,13 +65,6 @@ ], "shouldAccept": true }, - { - "title": "आपके अनुरोधों को पूरा करने के लिए इस ऐप से बोली डेटा Apple को भेजा जाएगा। इससे Apple को अपनी बोली पहचान तकनीक को बेहतर बनाने में भी मदद मिलेगी।", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, { "title": "“%@” आपकी चाल और तंदुरुस्ती गतिविधि तक पहुँचना चाहता है", "buttons": [ @@ -480,20 +466,6 @@ ], "shouldAccept": true }, - { - "title": "आपके अनुरोधों को प्रोसेस करने के लिए आपके %@ का कुछ डेटा Apple को भेजा जाएगा।", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, - { - "title": "आपके अनुरोधों को प्रोसेस करने के लिए इस ऐप से बोली डेटा Apple को भेजा जाएगा। इससे Apple को अपनी बोली पहचान तकनीक को बेहतर बनाने में भी मदद मिलेगी।", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, { "title": "“%@” कैमरे का ऐक्सेस चाहता है", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json index f85bd660..9f8b7411 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json @@ -44,13 +44,6 @@ ], "shouldAccept": true }, - { - "title": "Neki vaši %@ podaci poslat će se Appleu radi obrade vaših zahtjeva.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” želi pristupiti mikrofonu", "buttons": [ @@ -72,13 +65,6 @@ ], "shouldAccept": true }, - { - "title": "Podaci govora iz ove aplikacije poslat će se Appleu radi obrade vaših zahtjeva. Time će se također pomoći Appleu u poboljšanju tehnologije prepoznavanja govora.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” želi pristupiti vašim aktivnostima kretanja i kondicije", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json index 6870b44c..5ee5947d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json @@ -38,13 +38,6 @@ ], "shouldAccept": true }, - { - "title": "A(z) %@ adatai közül néhány el lesz küldve az Apple-nek az Ön kérelme feldolgozásához.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "A(z) „%@” hozzá szeretne férni az Ön mikrofonjához.", "buttons": [ @@ -66,13 +59,6 @@ ], "shouldAccept": true }, - { - "title": "A beszédadatok el lesznek küldve az alkalmazásból az Apple-nek a kérelme feldolgozásához. Ez segít az Apple-nek a beszédfelismerési technológiájának fejlesztésében is.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "A(z) „%@” hozzá szeretne férni az Ön mozgási és fitnesztevékenységéhez", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json index 65c1acac..6ec58403 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Sebagian data %@ Anda akan dikirimkan ke Apple untuk memproses permintaan Anda.", - "buttons": [ - "OKE" - ], - "shouldAccept": true - }, { "title": "“%@” Ingin Mengakses Mikrofon", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Data ucapan dari app ini akan dikirimkan ke Apple untuk memproses permintaan Anda. Ini juga akan membantu Apple meningkatkan teknologi pengenalan ucapannya.", - "buttons": [ - "OKE" - ], - "shouldAccept": true - }, { "title": "“%@” Ingin Mengakses Aktivitas Gerakan & Kebugaran Anda", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json index 18ca2ad6..2b10912e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Alcuni dati di %@ verranno inviati ad Apple per elaborare le tue richieste.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” vorrebbe accedere al microfono", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "I dati vocali di quest'app verranno inviati ad Apple per l'elaborazione delle tue richieste. L'invio dei dati consentirà ad Apple di migliorare la propria tecnologia di riconoscimento vocale.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” desidera accedere ai dati di “Movimento e fitness”", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json index 23ab1381..5956d529 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json @@ -38,13 +38,6 @@ ], "shouldAccept": true }, - { - "title": "%@データの一部は、リクエストを処理するためにAppleに送信されます。", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@”がマイクへのアクセスを求めています", "buttons": [ @@ -66,13 +59,6 @@ ], "shouldAccept": true }, - { - "title": "このAppからの音声データはリクエストを処理するためにAppleに送信されます。また、音声認識技術の向上にも役立てられます。", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@”がモーションとフィットネスのアクティビティへのアクセスを求めています", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index 47adc520..627a956c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -38,14 +38,6 @@ ], "shouldAccept": true }, - { - "title": "사용자의 요청을 처리하기 위해 사용자의 %@ 데이터 일부가 Apple에 전송됩니다.", - "buttons": [ - "승인", - "확인" - ], - "shouldAccept": true - }, { "title": "‘%@’이(가) 마이크에 접근하려고 합니다.", "buttons": [ @@ -70,14 +62,6 @@ ], "shouldAccept": true }, - { - "title": "사용자의 요청을 처리하기 위해 이 앱의 음성 데이터가 Apple에 전송됩니다. 이는 Apple의 음성 인식 기술 향상에도 도움이 됩니다.", - "buttons": [ - "승인", - "확인" - ], - "shouldAccept": true - }, { "title": "‘%@’이(가) 사용자의 동작 및 피트니스 활동에 접근하려고 합니다", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json index 6c8f7d99..23b81f8e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Sesetengah data %@ anda akan dihantar kepada Apple untuk memproses permintaan anda.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Mahu Mengakses Mikrofon", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Data pertuturan daripada app ini akan dihantar kepada Apple untuk memproses permintaan anda. Ini turut akan membantu Apple meningkatkan teknologi pengecaman pertuturan.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Mahu Mengakses Aktiviti Pergerakan & Kecergasan Anda", "buttons": [ @@ -460,13 +446,6 @@ ], "shouldAccept": true }, - { - "title": "Data pertuturan daripada aplikasi ini akan dihantar kepada Apple untuk memproses permintaan anda. Ini turut akan membantu Apple meningkatkan teknologi pengecaman pertuturannya.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” mahu menyediakan data kepada peranti Bluetooth berdekatan walaupun anda tidak menggunakan aplikasi.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json index 73070cf2..d09a727d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Enkele gegevens van %@ worden naar Apple verstuurd om je verzoeken te verwerken.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ wil toegang tot de microfoon", "buttons": [ @@ -80,13 +73,6 @@ ], "shouldAccept": true }, - { - "title": "Spraakgegevens uit deze app worden naar Apple verstuurd om je verzoeken te verwerken. Deze gegevens worden ook gebruikt om de spraakherkenningstechnologie van Apple te verbeteren.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ wil toegang tot je bewegings- en fitnessactiviteit", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json index 22c0635d..a6abecfb 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Noen av dataene fra %@ blir sendt til Apple for å behandle forespørslene dine.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ vil ha tilgang til mikrofonen", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Taledata fra denne appen vil bli sendt til Apple for å behandle forespørslene dine. Dette vil også hjelpe Apple med å forbedre talegjenkjenningsteknologien.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ vil ha tilgang til bevegelses- og treningsaktiviteten din", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json index 1da71ef8..81f1b0cc 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json @@ -38,13 +38,6 @@ ], "shouldAccept": true }, - { - "title": "Część danych aplikacji %@ zostanie wysłana do Apple w celu przetworzenia żądań.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@” chce uzyskać dostęp do mikrofonu", "buttons": [ @@ -66,13 +59,6 @@ ], "shouldAccept": true }, - { - "title": "Dane mowy zostaną wysłane do Apple w celu przetworzenia żądań. Pomoże to Apple w udoskonalaniu technologii rozpoznawania mowy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@” chce uzyskać dostęp do danych o Twoim ruchu i ćwiczeniach", "buttons": [ @@ -423,13 +409,6 @@ ], "shouldAccept": true }, - { - "title": "Część danych programu %@ zostanie wysłana do Apple w celu przetworzenia żądań.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@” chce uzyskać dostęp do Apple Music, danych Twojej aktywności dotyczącej muzyki i wiedeo oraz do Twojej biblioteki multimediów.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json index 67003975..497c76c9 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Alguns dos seus dados de %@ serão enviados à Apple para processar as solicitações.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Deseja Ter Acesso ao Microfone", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Dados de fala deste app serão enviados à Apple para processar as solicitações. Isso também ajudará a Apple a melhorar sua tecnologia de reconhecimento de fala.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Deseja Ter Acesso às Suas Atividades de Movimento e Preparo Físico", "buttons": [ @@ -458,13 +444,6 @@ ], "shouldAccept": true }, - { - "title": "Dados de fala deste aplicativo serão enviados à Apple para processar as solicitações. Isso também ajudará a Apple a melhorar sua tecnologia de reconhecimento de fala.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” deseja disponibilizar dados para os dispositivos Bluetooth por perto até mesmo quando você não estiver usando o aplicativo.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json index 47a6ea16..59cc97a3 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Alguns dados da aplicação %@ serão enviados à Apple para processar os seus pedidos.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” gostaria de aceder ao microfone", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Os dados de fala desta aplicação serão enviados à Apple para processar os seus pedidos. Estará igualmente a ajudar a Apple a melhorar a respetiva tecnologia de reconhecimento da fala.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” gostaria de aceder à sua atividade física e de fitness.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json index 70ab4aa3..9a806102 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Unele dintre datele %@ vor fi trimise la Apple pentru a vă procesa solicitările.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” ar dori să acceseze microfonul", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Datele vocale din această aplicație vor fi trimise la Apple pentru a vă procesa solicitările. Aceasta va ajuta și la îmbunătățirea tehnologiei de recunoaștere vocală Apple.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” ar dori să vă acceseze activitatea de mișcare și fitness", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json index 872691ab..58b5ca80 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json @@ -37,13 +37,6 @@ ], "shouldAccept": true }, - { - "title": "Некоторые из Ваших данных %@ будут отправлены в Apple на обработку запросов.", - "buttons": [ - "Разрешить" - ], - "shouldAccept": true - }, { "title": "Программа «%@» запрашивает доступ к микрофону.", "buttons": [ @@ -65,13 +58,6 @@ ], "shouldAccept": true }, - { - "title": "Речевые данные из этой программы будут отправлены в Apple на обработку Ваших запросов. Это также поможет Apple в улучшении технологии речевого распознавания.", - "buttons": [ - "Разрешить" - ], - "shouldAccept": true - }, { "title": "Программа «%@» запрашивает доступ к Вашим данным движения и фитнеса", "buttons": [ @@ -375,13 +361,6 @@ ], "shouldAccept": true }, - { - "title": "Речевые данные из этого приложения будут отправлены в Apple на обработку Ваших запросов. Это также поможет Apple в улучшении технологии речевого распознавания.", - "buttons": [ - "Разрешить" - ], - "shouldAccept": true - }, { "title": "Приложение «%@» запрашивает доступ к Вашим данным движения и фитнеса", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json index 5caac924..c776aa99 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Niektoré dáta aplikácie %@ budú kvôli spracovaniu vašich žiadostí odoslané do Apple.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Aplikácia „%@“ žiada o prístup k mikrofónu", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Rečové dáta z tejto apky budú kvôli spracovaniu vašich žiadostí odoslané do Apple a použité aj na vylepšovanie technológie rozpoznávania reči spoločnosti Apple.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Aplikácia „%@“ žiada o prístup k pohybovej a fitnes aktivite", "buttons": [ @@ -549,13 +535,6 @@ ], "shouldAccept": true }, - { - "title": "Rečové dáta z tejto aplikácie budú kvôli spracovaniu vašich žiadostí odoslané do Apple a použité aj na vylepšovanie technológie rozpoznávania reči spoločnosti Apple.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Aplikácia „%@“ chce sprístupňovať dáta pre okolité Bluetooth zariadenia, aj keď ju práve nepoužívate.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json index d8478403..7b227b08 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Viss information från %@ skickas till Apple så att dina instruktioner kan behandlas.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "”%@” begär åtkomst till mikrofonen", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Röstdata från den här appen skickas till Apple så att dina instruktioner kan behandlas. Detta hjälper även Apple att förbättra tekniken för röstigenkänning.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "”%@” begär åtkomst till din rörelse- och träningsaktivitet", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json index 3f949a96..ff966323 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "ข้อมูลของ %@ บางอย่างจะถูกส่งไปที่ Apple เพื่อดำเนินการตามคำขอของคุณ", - "buttons": [ - "ตกลง" - ], - "shouldAccept": true - }, { "title": "“%@” ต้องการที่จะเข้าถึงไมโครโฟน", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "ข้อมูลเสียงพูดจากแอพนี้จะถูกส่งไปที่ Apple เพื่อดำเนินการตามคำขอของคุณ การทำงานนี้จะช่วย Apple ปรับปรุงเทคโนโลยีการจดจำเสียงพูดของบริษัทด้วย", - "buttons": [ - "ตกลง" - ], - "shouldAccept": true - }, { "title": "“%@” ต้องการที่จะเข้าถึงกิจกรรมการเคลื่อนไหวและฟิตเนสของคุณ", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json index d14cbc9b..dea0fb0e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "İsteklerinizi işlemek için %@ verilerinizden bazıları Apple’a gönderilir.", - "buttons": [ - "Tamam" - ], - "shouldAccept": true - }, { "title": "“%@” Mikrofona Erişmek İstiyor", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "İsteklerinizi işlemek için bu uygulamadaki konuşma verileri Apple’a gönderilir. Bu aynı zamanda Apple’ın konuşma tanıma teknolojisini geliştirmesine de yardımcı olur.", - "buttons": [ - "Tamam" - ], - "shouldAccept": true - }, { "title": "“%@” Hareket ve Fitness Etkinliğinize Erişmek İstiyor", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json index 81916177..6434e11e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json @@ -44,14 +44,6 @@ ], "shouldAccept": true }, - { - "title": "Деякі ваші дані %@ будуть надсилатися до Apple для опрацювання ваших запитів.", - "buttons": [ - "OK", - "ОК" - ], - "shouldAccept": true - }, { "title": "«%@» хоче отримати доступ до мікрофона", "buttons": [ @@ -75,14 +67,6 @@ ], "shouldAccept": true }, - { - "title": "Голосові дані з цієї програми будуть надсилатися до Apple для опрацювання ваших запитів. Це також допоможе Apple вдосконалювати технологію розпізнавання мовлення.", - "buttons": [ - "OK", - "ОК" - ], - "shouldAccept": true - }, { "title": "«%@» хоче отримати доступ до вашої активності Руху і фітнесу", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json index b82d400c..a89671f0 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json @@ -45,13 +45,6 @@ ], "shouldAccept": true }, - { - "title": "Một số dữ liệu %@ của bạn sẽ được gửi đến Apple để xử lý yêu cầu của bạn.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Muốn Truy cập Micrô", "buttons": [ @@ -73,13 +66,6 @@ ], "shouldAccept": true }, - { - "title": "Dữ liệu lời nói từ ứng dụng này sẽ được gửi đến Apple để xử lý yêu cầu của bạn. Việc nãy cũng sẽ giúp Apple cải thiện công nghệ nhận dạng lời nói của mình.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Muốn Truy cập Hoạt động Di chuyển & Thể chất của bạn", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json index 1abd2a64..c6722615 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json @@ -6,13 +6,6 @@ ], "shouldAccept": true }, - { - "title": "您的部分“%@”数据将发送给Apple以处理您的请求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "“%@”想访问您的麦克风", "buttons": [ @@ -34,13 +27,6 @@ ], "shouldAccept": true }, - { - "title": "部分来自此App的语音数据将发送给Apple以处理您的请求。这还将帮助Apple改进语音识别技术。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "“%@”想访问您的活动与体能训练记录", "buttons": [ @@ -153,20 +139,6 @@ ], "shouldAccept": true }, - { - "title": "您的部分“%@”数据将发送给 Apple 以处理您的请求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "部分来自此应用的语音数据将发送给 Apple 以处理您的请求。这还将帮助 Apple 改进语音识别技术。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "您要通过 Siri 来使用“%@”吗?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json index 0ef123ab..e5c449f7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json @@ -38,13 +38,6 @@ ], "shouldAccept": true }, - { - "title": "您的部分“%@”数据将发送给 Apple 以处理您的请求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "“%@”想访问您的麦克风", "buttons": [ @@ -66,13 +59,6 @@ ], "shouldAccept": true }, - { - "title": "部分来自此应用的语音数据将发送给 Apple 以处理您的请求。这还将帮助 Apple 改进语音识别技术。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "“%@”想访问您的活动与体能训练记录", "buttons": [ @@ -353,20 +339,6 @@ ], "shouldAccept": true }, - { - "title": "您的部分%[tt]@数据将发送给Apple以处理您的请求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "部分来自此App的语音数据将发送给Apple以处理您的请求。这还将帮助Apple改进语音识别技术。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "您要通过Siri来使用“%@”吗?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 47716f89..1c00848b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -38,13 +38,6 @@ ], "shouldAccept": true }, - { - "title": "「%@」的部分資料將傳送予 Apple 以處理你的要求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」要取用咪高風", "buttons": [ @@ -66,13 +59,6 @@ ], "shouldAccept": true }, - { - "title": "此 App 的語音識別數據將傳送給 Apple 以處理你的要求。這亦會有助 Apple 改善語音識別技術。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」要取用你的「運動與健身」的「健身記錄」", "buttons": [ @@ -329,13 +315,6 @@ ], "shouldAccept": true }, - { - "title": "「%@」的部份資料將傳送予 Apple 以處理你的要求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」要取用你的運動與健身記錄", "buttons": [ @@ -385,20 +364,6 @@ ], "shouldAccept": true }, - { - "title": "「%@」的部份資料將傳送予Apple以處理你的要求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "此App的語音識別數據將傳送予Apple以處理你的要求。這亦會有助Apple改善語音識別技術。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "你要透過Siri使用「%@」嗎?", "buttons": [ @@ -588,20 +553,6 @@ ], "shouldAccept": true }, - { - "title": "%@ 的部分資料將傳送給 Apple 以處理你的請求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "此 App 的語音識別數據將傳送給 Apple 以處理你的請求。這亦會有助 Apple 改善語音識別技術。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」想使用「%@」登入", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index 848daaf7..40bf9ce5 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -38,13 +38,6 @@ ], "shouldAccept": true }, - { - "title": "您的部分「%@」資料會傳送給 Apple 來處理您的要求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」想要取用您的麥克風", "buttons": [ @@ -66,13 +59,6 @@ ], "shouldAccept": true }, - { - "title": "此 App 的語音資料會傳送給 Apple 來處理您的要求。這也可協助 Apple 改進其語音辨識技術。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」想要取用您的運動與健身記錄", "buttons": [ @@ -363,20 +349,6 @@ ], "shouldAccept": true }, - { - "title": "您的部分%[tt]@資料會傳送給Apple來處理您的要求。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "此App的語音資料會傳送給Apple來處理您的要求。這也可協助Apple改進其語音辨識技術。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "您要在「%@」上使用Siri嗎?", "buttons": [ From a579eb81f41916f3288d13724c6b48c9e2e9cb89 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Fri, 25 Oct 2019 14:46:30 +0300 Subject: [PATCH 11/33] Remove alerts from framework.json --- tools/springboard-alerts/frameworks.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/springboard-alerts/frameworks.json b/tools/springboard-alerts/frameworks.json index ebadb309..c158561b 100644 --- a/tools/springboard-alerts/frameworks.json +++ b/tools/springboard-alerts/frameworks.json @@ -24,11 +24,9 @@ "name": "TCC.framework", "values": [ { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceFaceID", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_INFO_SERVICE_kTCCServiceSiri", "button": "REQUEST_ACCESS_ALLOW" }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMicrophone", "button": "REQUEST_ACCESS_ALLOW" }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServicePhotosAdd", "button": "REQUEST_ACCESS_ALLOW" }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCalendar", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_INFO_SERVICE_kTCCServiceSpeechRecognition", "button": "REQUEST_ACCESS_ALLOW" }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMotion", "button": "REQUEST_ACCESS_ALLOW" }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCamera", "button": "REQUEST_ACCESS_ALLOW" }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceReminders", "button": "REQUEST_ACCESS_ALLOW" }, From 9c99b361c5584a8ff358a23e47298a651d3bec80 Mon Sep 17 00:00:00 2001 From: Ivan Nosar Date: Fri, 25 Oct 2019 16:55:09 +0300 Subject: [PATCH 12/33] Remove UIApplication_isSpringBoardShowingAnAlert --- Server/Application/SpringBoard.m | 48 ++++++++------------------------ 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/Server/Application/SpringBoard.m b/Server/Application/SpringBoard.m index 4e2eb892..9563adc9 100644 --- a/Server/Application/SpringBoard.m +++ b/Server/Application/SpringBoard.m @@ -19,6 +19,7 @@ #import #import "CBXConstants.h" #import "XCTest+CBXAdditions.h" +#import "CBXMachClock.h" typedef enum : NSUInteger { SpringBoardAlertHandlerIgnoringAlerts = 0, @@ -29,7 +30,6 @@ @interface SpringBoard () -- (BOOL)UIApplication_isSpringBoardShowingAnAlert; - (BOOL)shouldDismissAlertsAutomatically; - (SpringBoardAlertHandlerResult)handleAlert; - (BOOL)tapAlertButton:(XCUIElement *)alertButton; @@ -60,47 +60,23 @@ + (instancetype)application { return _springBoard; } -- (BOOL)UIApplication_isSpringBoardShowingAnAlert { - SEL selector = NSSelectorFromString(@"_isSpringBoardShowingAnAlert"); - if (![[UIApplication sharedApplication] respondsToSelector:selector]) { - DDLogDebug(@"UIApplication does not respond to %@; returning YES to force XCUIElementQuery", - NSStringFromSelector(selector)); - return YES; - } - - NSMethodSignature *signature; - signature = [[UIApplication class] instanceMethodSignatureForSelector:selector]; - NSInvocation *invocation; - - invocation = [NSInvocation invocationWithMethodSignature:signature]; - invocation.target = [UIApplication sharedApplication]; - invocation.selector = selector; - - [invocation invoke]; - - BOOL alertShowing = NO; - char ref; - [invocation getReturnValue:(void **) &ref]; - if (ref == (BOOL)1) { - alertShowing = YES; - } - - return alertShowing; -} - - (XCUIElement *)queryForAlert { @synchronized (self) { XCUIElement *alert = nil; + + // Collect timing info + NSTimeInterval startTime = [[CBXMachClock sharedClock] absoluteTime]; + + XCUIElementQuery *query = [self descendantsMatchingType:XCUIElementTypeAlert]; + NSArray *elements = [query allElementsBoundByIndex]; - if([self UIApplication_isSpringBoardShowingAnAlert]) { + if ([elements count] != 0) { + alert = elements[0]; + } - XCUIElementQuery *query = [self descendantsMatchingType:XCUIElementTypeAlert]; - NSArray *elements = [query allElementsBoundByIndex]; + NSTimeInterval elapsedSeconds = [[CBXMachClock sharedClock] absoluteTime] - startTime; + DDLogDebug(@"SpringBoard.queryForAlert took %@ seconds", @(elapsedSeconds)); - if ([elements count] != 0) { - alert = elements[0]; - } - } return alert; } } From c685ad0dd1a708738c0e849fd78028e994b3fce4 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 28 Oct 2019 13:32:57 +0300 Subject: [PATCH 13/33] Move element resolving logic for different Xcode versions to `cbx_resolve` method (#365) * Implement cbx_resolve * resolve comments --- Server/Application/SpringBoard.m | 46 ++----------------- Server/AutomationActions/Gestures/ClearText.m | 10 +--- Server/XCTest+CBXAdditions.h | 12 +++-- Server/XCTest+CBXAdditions.m | 27 ++++++----- 4 files changed, 31 insertions(+), 64 deletions(-) diff --git a/Server/Application/SpringBoard.m b/Server/Application/SpringBoard.m index 9563adc9..3c4c3a2b 100644 --- a/Server/Application/SpringBoard.m +++ b/Server/Application/SpringBoard.m @@ -146,11 +146,7 @@ - (XCUIElement *)findDismissButtonOnAlert: (XCUIElement *) alert marks: (NSArray button = alert.buttons[mark]; // Resolve before asking if the button exists. - if ([button respondsToSelector:@selector(resolve)]) { - [button resolve]; - } else { - [button resolveOrRaiseTestFailure]; - } + [button cbx_resolve]; if (button && button.exists) { return button; @@ -246,15 +242,7 @@ - (SpringBoardAlertHandlerResult)handleAlert { } // Resolve before asking if the button exists. - if ([button respondsToSelector:@selector(resolve)]) { - [button resolve]; - } else { - NSError *error = nil; - if (![button resolveOrRaiseTestFailure:NO error:&error]) { - DDLogWarn(@"Encountered an error resolving element '%@':\n%@", - button, [error localizedDescription]); - } - } + [button cbx_resolve]; if (!button || !button.exists) { return SpringBoardAlertHandlerNoAlert; @@ -277,15 +265,7 @@ - (SpringBoardDismissAlertResult)dismissAlertByTappingButtonWithTitle:(NSString return SpringBoardDismissAlertNoAlert; } else { XCUIElement *button = alert.buttons[title]; - if ([button respondsToSelector:@selector(resolve)]) { - [button resolve]; - } else { - NSError *error = nil; - if (![button resolveOrRaiseTestFailure:NO error:&error]) { - DDLogWarn(@"Encountered an error resolving element '%@':\n%@", - button, [error localizedDescription]); - } - } + [button cbx_resolve]; if (!button || !button.exists) { return SpringBoardDismissAlertNoMatchingButton; @@ -307,15 +287,7 @@ - (SpringBoardDismissAlertResult)dismissAlertByTappingButtonWithTitle:(NSString - (BOOL)tapAlertButton:(XCUIElement *)alertButton { @synchronized (self) { - if ([alertButton respondsToSelector:@selector(resolve)]) { - [alertButton resolve]; - } else { - NSError *error = nil; - if (![alertButton resolveOrRaiseTestFailure:NO error:&error]) { - DDLogWarn(@"Encountered an error resolving element '%@':\n%@", - alertButton, [error localizedDescription]); - } - } + [alertButton cbx_resolve]; CGPoint hitPoint = [self hitPointForAlertButton:alertButton]; if (hitPoint.x < 0 || hitPoint.y < 0) { @@ -382,15 +354,7 @@ - (BOOL)tapAlertButton:(XCUIElement *)alertButton { } - (CGPoint)hitPointForAlertButton:(XCUIElement *)alertButton { - if ([alertButton respondsToSelector:@selector(resolve)]) { - [alertButton resolve]; - } else { - NSError *error = nil; - if (![alertButton resolveOrRaiseTestFailure:NO error:&error]) { - DDLogWarn(@"Encountered an error resolving element '%@':\n%@", - alertButton, [error localizedDescription]); - } - } + [alertButton cbx_resolve]; XCElementSnapshot *snapshot = alertButton.lastSnapshot; diff --git a/Server/AutomationActions/Gestures/ClearText.m b/Server/AutomationActions/Gestures/ClearText.m index 2d3c78bb..acf0ae87 100644 --- a/Server/AutomationActions/Gestures/ClearText.m +++ b/Server/AutomationActions/Gestures/ClearText.m @@ -207,15 +207,7 @@ - (XCUIElement *)deleteKey { XCUIElement *deleteKey = elements[0]; if (!deleteKey.lastSnapshot) { - if ([deleteKey respondsToSelector:@selector(resolve)]) { - [deleteKey resolve]; - } else { - NSError *error = nil; - if (![deleteKey resolveOrRaiseTestFailure:NO error:&error]) { - DDLogWarn(@"Encountered an error resolving element '%@':\n%@", - deleteKey, [error localizedDescription]); - } - } + [deleteKey cbx_resolve]; } return deleteKey; diff --git a/Server/XCTest+CBXAdditions.h b/Server/XCTest+CBXAdditions.h index 1d21447b..8c592608 100644 --- a/Server/XCTest+CBXAdditions.h +++ b/Server/XCTest+CBXAdditions.h @@ -63,13 +63,19 @@ @interface XCUIElement (CBXAdditions) - (XCElementSnapshot *_Nullable)lastSnapshot; -- (void)resolveOrRaiseTestFailure; -- (BOOL)resolveOrRaiseTestFailure:(BOOL)arg1 error:(id _Nonnull *_Nonnull)arg2; - (XCUICoordinate *_Nonnull)hitPointCoordinate; - (XCUIElementQuery *_Nonnull)query; -// Removed in Xcode 11.0 +// Deprecated since Xcode 11.0 - (void)resolve; +// Added since Xcode 11.0 +- (void)resolveOrRaiseTestFailure; +- (BOOL)resolveOrRaiseTestFailure:(BOOL)arg1 error:(id _Nonnull *_Nonnull)arg2; + +/** + Resolve element + */ +- (void)cbx_resolve; @end @interface XCElementSnapshot (CBXAdditions) diff --git a/Server/XCTest+CBXAdditions.m b/Server/XCTest+CBXAdditions.m index f0629b9a..fa358b17 100644 --- a/Server/XCTest+CBXAdditions.m +++ b/Server/XCTest+CBXAdditions.m @@ -74,15 +74,7 @@ + (void)cbxResolveApplication:(XCUIApplication *_Nonnull)xcuiApplication [invocation getReturnValue:&buffer]; element = (__bridge XCUIElement *)buffer; - if ([element respondsToSelector:@selector(resolve)]) { - [element resolve]; - } else { - NSError *error = nil; - if (![element resolveOrRaiseTestFailure:NO error:&error]) { - DDLogWarn(@"Encountered an error resolving element '%@':\n%@", - element, [error localizedDescription]); - } - } + [element cbx_resolve]; } - (XCUIElementQuery *_Nonnull)cbxQueryForDescendantsOfAnyType { @@ -115,10 +107,23 @@ - (XCUIElementQuery *_Nonnull)cbxQueryForDescendantsOfAnyType { @end +@implementation XCUIElement (CBXAdditions) +- (void)cbx_resolve { + if ([self respondsToSelector:@selector(resolve)]) { + [self resolve]; + } else { + NSError *error = nil; + if (![self resolveOrRaiseTestFailure:NO error:&error]) { + DDLogWarn(@"Encountered an error resolving element '%@':\n%@", + self, [error localizedDescription]); + } + } +} +@end + @implementation XCUIElementQuery (CBXAdditions) -- (XCElementSnapshot *)cbx_elementSnapshotForDebugDescription -{ +- (XCElementSnapshot *)cbx_elementSnapshotForDebugDescription { if ([self respondsToSelector:@selector(elementSnapshotForDebugDescription)]) { return [self elementSnapshotForDebugDescription]; } From ff7c6f0a982c13b8065a2cf93d66fc76d8428011 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 28 Oct 2019 13:52:04 +0300 Subject: [PATCH 14/33] Remove sensitive alerts --- .../springboard-alerts-ar.dataset/alerts.json | 77 ---------- .../springboard-alerts-ca.dataset/alerts.json | 105 ------------- .../springboard-alerts-cs.dataset/alerts.json | 77 ---------- .../springboard-alerts-da.dataset/alerts.json | 77 ---------- .../springboard-alerts-de.dataset/alerts.json | 84 ----------- .../springboard-alerts-el.dataset/alerts.json | 77 ---------- .../springboard-alerts-en.dataset/alerts.json | 77 ---------- .../alerts.json | 77 ---------- .../alerts.json | 77 ---------- .../springboard-alerts-es.dataset/alerts.json | 140 ------------------ .../alerts.json | 77 ---------- .../springboard-alerts-fi.dataset/alerts.json | 105 ------------- .../springboard-alerts-fr.dataset/alerts.json | 70 --------- .../alerts.json | 77 ---------- .../springboard-alerts-he.dataset/alerts.json | 77 ---------- .../springboard-alerts-hi.dataset/alerts.json | 119 --------------- .../springboard-alerts-hr.dataset/alerts.json | 77 ---------- .../springboard-alerts-hu.dataset/alerts.json | 77 ---------- .../springboard-alerts-id.dataset/alerts.json | 77 ---------- .../springboard-alerts-it.dataset/alerts.json | 77 ---------- .../springboard-alerts-ja.dataset/alerts.json | 77 ---------- .../springboard-alerts-ko.dataset/alerts.json | 112 -------------- .../springboard-alerts-ms.dataset/alerts.json | 91 ------------ .../springboard-alerts-nl.dataset/alerts.json | 77 ---------- .../springboard-alerts-no.dataset/alerts.json | 98 ------------ .../springboard-alerts-pl.dataset/alerts.json | 77 ---------- .../springboard-alerts-pt.dataset/alerts.json | 77 ---------- .../alerts.json | 84 ----------- .../springboard-alerts-ro.dataset/alerts.json | 105 ------------- .../springboard-alerts-ru.dataset/alerts.json | 77 ---------- .../springboard-alerts-sk.dataset/alerts.json | 98 ------------ .../springboard-alerts-sv.dataset/alerts.json | 77 ---------- .../springboard-alerts-th.dataset/alerts.json | 91 ------------ .../springboard-alerts-tr.dataset/alerts.json | 133 ----------------- .../springboard-alerts-uk.dataset/alerts.json | 126 ---------------- .../springboard-alerts-vi.dataset/alerts.json | 77 ---------- .../alerts.json | 126 ---------------- .../alerts.json | 112 -------------- .../alerts.json | 119 --------------- 39 files changed, 3535 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json index 4b11b91b..f3e70f28 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "تسجيل الدخول إلى App Store", - "buttons": [ - "إلغاء" - ], - "shouldAccept": true - }, - { - "title": "تسجيل الدخول لـ Game Center", - "buttons": [ - "إلغاء" - ], - "shouldAccept": true - }, - { - "title": "تسجيل الدخول إلى iTunes Store", - "buttons": [ - "إلغاء" - ], - "shouldAccept": true - }, - { - "title": "تسجيل الدخول إلى iMessage", - "buttons": [ - "إلغاء" - ], - "shouldAccept": true - }, - { - "title": "تسجيل الدخول إلى FaceTime", - "buttons": [ - "إلغاء" - ], - "shouldAccept": true - }, - { - "title": "تسجيل الدخول إلى iCloud", - "buttons": [ - "إلغاء" - ], - "shouldAccept": true - }, { "title": "السماح لـ \"%@\" بتحديث البيانات الصحية الخاصة بك.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "سيتم فصل شبكة Wi-Fi الحالية والشبكات القريبة الأخرى حتى الغد.\n\nسيظل اتصال Wi-Fi متوفرًا لكل من AirDrop ونقطة الاتصال الشخصية ودقة الموقع.", - "buttons": [ - "موافق" - ], - "shouldAccept": true - }, - { - "title": "سيتم فصل شبكة WLAN الحالية والشبكات القريبة الأخرى حتى الغد.\n\nسيظل اتصال WLAN متوفرًا لكل من AirDrop ونقطة الاتصال الشخصية ودقة الموقع.", - "buttons": [ - "موافق" - ], - "shouldAccept": true - }, - { - "title": "سيتم فصل الملحقات المتصلة حاليًا ولن تتصل ملحقات أخرى.\n\nسيظل اتصال Bluetooth متوفرًا لكل من Apple Watch و Apple Pencil ونقطة الاتصال الشخصية و Handoff.", - "buttons": [ - "موافق" - ], - "shouldAccept": true - }, { "title": "يرغب \"%@\" في استلام مكالمات VoIP في الخلفية", "buttons": [ @@ -346,13 +283,6 @@ ], "shouldAccept": true }, - { - "title": "تسجيل الدخول باستخدام Apple ID", - "buttons": [ - "إلغاء" - ], - "shouldAccept": true - }, { "title": "يستخدم \"%@\" موقعك في الخلفية على مدار الأيام الثلاثة الماضية. هل ترغب في الاستمرار في السماح باستخدام الموقع في الخلفية؟", "buttons": [ @@ -437,13 +367,6 @@ ], "shouldAccept": true }, - { - "title": "تشغيل الـ Bluetooth يسمح \"%@\" بالاتصال بالملحقات", - "buttons": [ - "موافق" - ], - "shouldAccept": true - }, { "title": "يود \"%@\" إرسال الإشعارات إليك", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json index 5da42951..557c33f5 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json @@ -235,48 +235,6 @@ ], "shouldAccept": true }, - { - "title": "Inicia sessió a l’App Store", - "buttons": [ - "Cancel·lar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sessió al Game Center", - "buttons": [ - "Cancel·lar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sessió a l’iTunes Store", - "buttons": [ - "Cancel·lar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sessió a l’iMessage", - "buttons": [ - "Cancel·lar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sessió al FaceTime", - "buttons": [ - "Cancel·lar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sessió a l’iCloud", - "buttons": [ - "Cancel·lar" - ], - "shouldAccept": true - }, { "title": "Permetre que “%@” actualitzi la teva informació mèdica.", "buttons": [ @@ -298,27 +256,6 @@ ], "shouldAccept": true }, - { - "title": "La xarxa Wi‑Fi actual i la resta de xarxes properes es desconnectaran fins demà.\n\nLes xarxes Wi‑Fi continuaran estant disponibles per a l’AirDrop, “Compartir Internet” i per millorar la precisió de la ubicació.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "La xarxa WLAN actual i la resta de xarxes properes es desconnectaran fins demà.\n\nLes xarxes WLAN continuaran estant disponibles per a l’AirDrop, “Compartir Internet” i per millorar la precisió de la ubicació.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Es desconnectaran els accessoris que en aquest moment estiguin connectats i no es connectarà cap altre accessori.\n\nEl Bluetooth continuarà estant disponible per a l’Apple Watch, l’Apple Pencil, “Compartir Internet” i el Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” vol rebre trucades VoIP en segon pla", "buttons": [ @@ -347,13 +284,6 @@ ], "shouldAccept": true }, - { - "title": "Inicia sessió amb l’ID d’Apple", - "buttons": [ - "Cancel·lar" - ], - "shouldAccept": true - }, { "title": "Permets que “%@” actualitzi la teva informació mèdica.", "buttons": [ @@ -361,27 +291,6 @@ ], "shouldAccept": true }, - { - "title": "La xarxa Wi‑Fi actual i la resta de xarxes properes es desconnectaran fins demà.\n\nLes xarxes Wi‑Fi continuaran estant disponibles per a l’AirDrop, el punt d’accés personal, i per millorar la precisió de la ubicació.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "La xarxa WLAN actual i la resta de xarxes properes es desconnectaran fins demà.\n\nLes xarxes WLAN continuaran estant disponibles per a l’AirDrop, el punt d’accés personal, i per millorar la precisió de la ubicació.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Es desconnectaran els accessoris que en aquest moment estiguin connectats i no es connectarà cap altre accessori.\n\nEl Bluetooth continuarà estant disponible per a l’Apple Watch, l’Apple Pencil, el punt d’accés personal i el Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” ha estat fent servir la teva ubicació en segon pla durant els últims 3 dies. Vols continuar permetent que utilitzi la teva ubicació en segon pla?", "buttons": [ @@ -494,13 +403,6 @@ ], "shouldAccept": true }, - { - "title": "Activar Bluetooth per permetre que “%@” es connecti als accessoris", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" et vol enviar notificacions", "buttons": [ @@ -523,12 +425,5 @@ "OK" ], "shouldAccept": true - }, - { - "title": "Iniciar sessió a l’iTunes Store", - "buttons": [ - "Cancel·lar" - ], - "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json index 43fd7f68..27a637ac 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json @@ -226,48 +226,6 @@ ], "shouldAccept": true }, - { - "title": "Přihlášení k App Storu", - "buttons": [ - "Zrušit" - ], - "shouldAccept": true - }, - { - "title": "Přihlášení ke Game Center", - "buttons": [ - "Zrušit" - ], - "shouldAccept": true - }, - { - "title": "Přihlášení k iTunes Storu", - "buttons": [ - "Zrušit" - ], - "shouldAccept": true - }, - { - "title": "Přihlášení k iMessage", - "buttons": [ - "Zrušit" - ], - "shouldAccept": true - }, - { - "title": "Přihlášení k FaceTimu", - "buttons": [ - "Zrušit" - ], - "shouldAccept": true - }, - { - "title": "Přihlášení k iCloudu", - "buttons": [ - "Zrušit" - ], - "shouldAccept": true - }, { "title": "Povolit aplikaci „%@“ aktualizaci vašich zdravotních dat.", "buttons": [ @@ -289,27 +247,6 @@ ], "shouldAccept": true }, - { - "title": "Aktuální Wi‑Fi síť a jiné sítě v okolí budou pro zbytek dne odpojeny.\n\nWi‑Fi bude nadále k dispozici pro AirDrop, Osobní hotspot a přesné určování polohy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Aktuální WLAN a jiné sítě v okolí budou pro zbytek dne odpojeny.\n\nWLAN bude nadále k dispozici pro AirDrop, Osobní hotspot a přesné určování polohy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Připojené příslušenství bude odpojeno a nebude možné připojit ani jiné příslušenství.\n\nRozhraní Bluetooth bude nadále dostupné pro Apple Watch, Apple Pencil, Osobní hotspot a Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@“ žádá o povolení k příjmu VoIP hovorů na pozadí", "buttons": [ @@ -347,13 +284,6 @@ ], "shouldAccept": true }, - { - "title": "Přihlaste se pomocí Apple ID", - "buttons": [ - "Zrušit" - ], - "shouldAccept": true - }, { "title": "Aplikace „%@“ používala během posledních 3 dní vaše polohové údaje na pozadí. Chcete jí to umožňovat i nadále?", "buttons": [ @@ -459,13 +389,6 @@ ], "shouldAccept": true }, - { - "title": "Chcete‑li aplikaci „%@“ povolit připojení k příslušenstvím, zapněte Bluetooth", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@\" vám chce zasílat oznámení.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json index 3706709d..78691ef1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json @@ -239,48 +239,6 @@ ], "shouldAccept": true }, - { - "title": "Log ind på App Store", - "buttons": [ - "Annuller" - ], - "shouldAccept": true - }, - { - "title": "Log Ind på Game Center", - "buttons": [ - "Annuller" - ], - "shouldAccept": true - }, - { - "title": "Log ind på iTunes Store", - "buttons": [ - "Annuller" - ], - "shouldAccept": true - }, - { - "title": "Log ind på iMessage", - "buttons": [ - "Annuller" - ], - "shouldAccept": true - }, - { - "title": "Log ind på FaceTime", - "buttons": [ - "Annuller" - ], - "shouldAccept": true - }, - { - "title": "Log ind på iCloud", - "buttons": [ - "Annuller" - ], - "shouldAccept": true - }, { "title": "“%@” må opdatere dine sundhedsdata.", "buttons": [ @@ -302,27 +260,6 @@ ], "shouldAccept": true }, - { - "title": "Det aktuelle Wi-Fi-netværk og andre i nærheden afbrydes indtil i morgen.\n\nWi-Fi vil stadig være tilgængeligt for AirDrop, Internetdeling og lokaliteternøjagtighed.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Det aktuelle WLAN-netværk og andre i nærheden afbrydes indtil i morgen.\n\nWLAN vil stadig være tilgængeligt for AirDrop, Internetdeling og lokaliteternøjagtighed.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Tilbehør, der er forbundet nu, vil få afbrudt forbindelsen, og andet tilbehør vil ikke oprette forbindelse.\n\nBluetooth vil stadig være tilgængeligt for Apple Watch, Apple Pencil, Internetdeling og Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” vil modtage VoIP‑opkald i baggrunden", "buttons": [ @@ -351,13 +288,6 @@ ], "shouldAccept": true }, - { - "title": "Log ind med Apple-id", - "buttons": [ - "Annuller" - ], - "shouldAccept": true - }, { "title": "“%@” har brugt din lokalitet i baggrunden over de sidste 3 dage. Vil du blive ved med at tillade brug af lokalitet i baggrunden?", "buttons": [ @@ -449,13 +379,6 @@ ], "shouldAccept": true }, - { - "title": "Slå Bluetooth til for at tillade “%@” at oprette forbindelse til Tilbehør", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" vil gerne sende dig meddelelser", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json index 00a87055..324243ab 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Im App Store anmelden", - "buttons": [ - "Abbrechen" - ], - "shouldAccept": true - }, - { - "title": "Beim Game Center anmelden", - "buttons": [ - "Abbrechen" - ], - "shouldAccept": true - }, - { - "title": "Im iTunes Store anmelden", - "buttons": [ - "Abbrechen" - ], - "shouldAccept": true - }, - { - "title": "Bei iMessage anmelden", - "buttons": [ - "Abbrechen" - ], - "shouldAccept": true - }, - { - "title": "Bei FaceTime anmelden", - "buttons": [ - "Abbrechen" - ], - "shouldAccept": true - }, - { - "title": "Bei iCloud anmelden", - "buttons": [ - "Abbrechen" - ], - "shouldAccept": true - }, { "title": "Darf „%@“ deine Gesundheitsdaten aktualisieren?", "buttons": [ @@ -297,20 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Das aktuelle WLAN und andere nahegelegene drahtlose Netzwerke werden bis morgen getrennt.\n\nWLAN ist weiterhin für AirDrop, den persönlichen Hotspot und zur Standortgenauigkeit verfügbar.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Die Verbindung zu aktuell verbundenem Zubehör wird getrennt und anderes Zubehör kann nicht verbunden werden.\n\nBluetooth ist weiterhin für Apple Watch, Apple Pencil, den persönlichen Hotspot und Handoff verfügbar.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@“ möchte VoIP-Anrufe im Hintergrund empfangen", "buttons": [ @@ -339,13 +283,6 @@ ], "shouldAccept": true }, - { - "title": "Mit Apple‑ID anmelden", - "buttons": [ - "Abbrechen" - ], - "shouldAccept": true - }, { "title": "„%@“ hat deinen Standort in den letzten 3 Tagen im Hintergrund verwendet. Möchtest du die Benutzung des Standorts im Hintergrund weiterhin erlauben?", "buttons": [ @@ -549,20 +486,6 @@ ], "shouldAccept": true }, - { - "title": "Schakel Bluetooth in om '%@' verbinding te laten maken met accessoires", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Bluetooth aktivieren, damit „%@“ die Verbindung zum Zubehör herstellen kann", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@\" möchte dir Mitteilungen senden", "buttons": [ @@ -724,13 +647,6 @@ ], "shouldAccept": true }, - { - "title": "Aktivieren Sie Bluetooth, damit „%@“ die Verbindung zum Zubehör herstellen kann", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Darf „%@“ Ihre Gesundheitsdaten aktualisieren?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json index 4bfd50a7..0bdb40de 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Σύνδεση στο App Store", - "buttons": [ - "Ακύρωση" - ], - "shouldAccept": true - }, - { - "title": "Σύνδεση στο Game Center", - "buttons": [ - "Ακύρωση" - ], - "shouldAccept": true - }, - { - "title": "Σύνδεση στο iTunes Store", - "buttons": [ - "Ακύρωση" - ], - "shouldAccept": true - }, - { - "title": "Σύνδεση στο iMessage", - "buttons": [ - "Ακύρωση" - ], - "shouldAccept": true - }, - { - "title": "Σύνδεση στο FaceTime", - "buttons": [ - "Ακύρωση" - ], - "shouldAccept": true - }, - { - "title": "Σύνδεση στο iCloud", - "buttons": [ - "Ακύρωση" - ], - "shouldAccept": true - }, { "title": "Να επιτρέπεται στην εφαρμογή «%@» η ενημέρωση των ιατρικών δεδομένων σας.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Θα γίνει αποσύνδεση από το τρέχον δίκτυο Wi-Fi και άλλα γειτονικά δίκτυα μέχρι αύριο.\n\nΤο Wi-Fi θα εξακολουθεί να είναι διαθέσιμο για το AirDrop, το Προσωπικό hotspot, και για ακρίβεια τοποθεσίας.", - "buttons": [ - "ΟΚ" - ], - "shouldAccept": true - }, - { - "title": "Θα γίνει αποσύνδεση από το τρέχον δίκτυο WLAN και άλλα γειτονικά δίκτυα μέχρι αύριο.\n\nΤο WLAN θα εξακολουθεί να είναι διαθέσιμο για το AirDrop, το Προσωπικό hotspot, και για ακρίβεια τοποθεσίας.", - "buttons": [ - "ΟΚ" - ], - "shouldAccept": true - }, - { - "title": "Θα αποσυνδεθούν τα αξεσουάρ που είναι συνδεδεμένα τώρα και δεν θα είναι δυνατή η σύνδεση άλλων αξεσουάρ.\n\nΤο Bluetooth θα εξακολουθεί να είναι διαθέσιμο για το Apple Watch, το Apple Pencil, το Προσωπικό hotspot και το Handoff.", - "buttons": [ - "ΟΚ" - ], - "shouldAccept": true - }, { "title": "Αίτημα από «%@» για λήψη κλήσεων VoIP στο παρασκήνιο", "buttons": [ @@ -353,13 +290,6 @@ ], "shouldAccept": true }, - { - "title": "Σύνδεση με Apple ID", - "buttons": [ - "Ακύρωση" - ], - "shouldAccept": true - }, { "title": "Να επιτρέπεται στην εφαρμογή «%@» η ενημέρωση των δεδομένων Υγείας σας.", "buttons": [ @@ -458,13 +388,6 @@ ], "shouldAccept": true }, - { - "title": "Ενεργοποίηση Bluetooth για σύνδεση του «%@» με αξεσουάρ", - "buttons": [ - "ΟΚ" - ], - "shouldAccept": true - }, { "title": "Αίτημα από «%@» για να σας στέλνει γνωστοποιήσεις", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json index c6440dd9..92e45578 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json @@ -235,48 +235,6 @@ ], "shouldAccept": true }, - { - "title": "Sign In to App Store", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to Game Center", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iTunes Store", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iMessage", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to FaceTime", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iCloud", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Send You Notifications", "buttons": [ @@ -306,27 +264,6 @@ ], "shouldAccept": true }, - { - "title": "The current Wi-Fi network and others nearby will be disconnected until tomorrow.\n\nWi-Fi will continue to be available for AirDrop, Personal Hotspot, and location accuracy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "The current WLAN network and others nearby will be disconnected until tomorrow.\n\nWLAN will continue to be available for AirDrop, Personal Hotspot, and location accuracy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Currently connected accessories will be disconnected and other accessories will not connect.\n\nBluetooth will continue to be available for Apple Watch, Apple Pencil, Personal Hotspot, and Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Receive VoIP Calls in the Background", "buttons": [ @@ -362,13 +299,6 @@ ], "shouldAccept": true }, - { - "title": "Sign In with Apple ID", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, { "title": "“%@” has been using your location in the background over the past 3 days. Do you want to continue to allow background location use?", "buttons": [ @@ -474,13 +404,6 @@ ], "shouldAccept": true }, - { - "title": "Turn On Bluetooth to Allow “%@” to Connect to Accessories", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" Would Like to Send You Notifications", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json index 1284310b..de83fd96 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json @@ -235,48 +235,6 @@ ], "shouldAccept": true }, - { - "title": "Sign In to App Store", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to Game Center", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iTunes Store", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iMessage", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to FaceTime", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iCloud", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, { "title": "Allow “%@” to update your health data.", "buttons": [ @@ -298,27 +256,6 @@ ], "shouldAccept": true }, - { - "title": "The current Wi-Fi network and others nearby will be disconnected until tomorrow.\n\nWi-Fi will continue to be available for AirDrop, Personal Hotspot and location accuracy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "The current WLAN network and others nearby will be disconnected until tomorrow.\n\nWLAN will continue to be available for AirDrop, Personal Hotspot and location accuracy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Currently connected accessories will be disconnected and other accessories will not connect.\n\nBluetooth will continue to be available for Apple Watch, Apple Pencil, Personal Hotspot and Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Receive VoIP Calls in the Background", "buttons": [ @@ -347,13 +284,6 @@ ], "shouldAccept": true }, - { - "title": "Sign In with Apple ID", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, { "title": "“%@” has been using your location in the background over the past three days. Do you want to continue to allow background location use?", "buttons": [ @@ -445,13 +375,6 @@ ], "shouldAccept": true }, - { - "title": "Turn On Bluetooth to Allow “%@” to Connect to Accessories", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" Would Like to Send You Notifications", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json index b1445076..cb9cc74d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json @@ -235,48 +235,6 @@ ], "shouldAccept": true }, - { - "title": "Sign In to App Store", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to Game Center", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iTunes Store", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iMessage", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to FaceTime", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, - { - "title": "Sign In to iCloud", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, { "title": "Allow “%@” to update your health data.", "buttons": [ @@ -298,27 +256,6 @@ ], "shouldAccept": true }, - { - "title": "The current Wi-Fi network and others nearby will be disconnected until tomorrow.\n\nWi-Fi will continue to be available for AirDrop, Personal Hotspot and location accuracy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "The current WLAN network and others nearby will be disconnected until tomorrow.\n\nWLAN will continue to be available for AirDrop, Personal Hotspot and location accuracy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Currently connected accessories will be disconnected and other accessories will not connect.\n\nBluetooth will continue to be available for Apple Watch, Apple Pencil, Personal Hotspot and Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Would Like to Receive VoIP Calls in the Background", "buttons": [ @@ -354,13 +291,6 @@ ], "shouldAccept": true }, - { - "title": "Sign In with Apple ID", - "buttons": [ - "Cancel" - ], - "shouldAccept": true - }, { "title": "“%@” has been using your location in the background over the past 3 days. Do you want to continue to allow background location use?", "buttons": [ @@ -445,13 +375,6 @@ ], "shouldAccept": true }, - { - "title": "Turn On Bluetooth to Allow “%@” to Connect to Accessories", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" Would Like to Send You Notifications", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json index e457fafb..0c682bc6 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json @@ -241,48 +241,6 @@ ], "shouldAccept": true }, - { - "title": "Inicia sesión en App Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sesión en Game Center", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sesión en iTunes Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sesión en iMessage", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sesión en FaceTime", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sesión en iCloud", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, { "title": "Permitir a %@ actualizar tus datos de salud.", "buttons": [ @@ -304,27 +262,6 @@ ], "shouldAccept": true }, - { - "title": "La red Wi-Fi actual y otras cercanas se desconectarán hasta mañana.\n\nLa red Wi-Fi seguirá estando disponible para AirDrop, “Compartir Internet” y para mejorar la precisión de la localización.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "La red WLAN actual y otras cercanas se desconectarán hasta mañana.\n\nLa red WLAN seguirá estando disponible para AirDrop, “Compartir Internet” y para mejorar la precisión de la localización.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Los accesorios conectados se desconectarán y no se conectarán otros accesorios.\n\nBluetooth seguirá estando disponible para el Apple Watch, el Apple Pencil, “Compartir Internet” y Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” quiere recibir llamadas VoIP en segundo plano", "buttons": [ @@ -353,34 +290,6 @@ ], "shouldAccept": true }, - { - "title": "Inicia sesión con ID de Apple", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "La red Wi-Fi actual y otras cercanas se desconectarán hasta mañana.\n\nLa red Wi-Fi seguirá estando disponible para AirDrop, para el punto de acceso personal y para mejorar la precisión de la localización.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "La red WLAN actual y otras cercanas se desconectarán hasta mañana.\n\nLa red WLAN seguirá estando disponible para AirDrop, para el punto de acceso personal y para mejorar la precisión de la localización.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Los accesorios conectados se desconectarán y no se conectarán otros accesorios.\n\nBluetooth seguirá estando disponible para el Apple Watch, el Apple Pencil, el punto de acceso personal y Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ ha estado usando tu ubicación en segundo plano durante los últimos 3 días. ¿Quieres seguir permitiendo el uso en segundo plano?", "buttons": [ @@ -495,13 +404,6 @@ ], "shouldAccept": true }, - { - "title": "Activa Bluetooth para permitir que “%@” se conecte a los accesorios", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" quiere enviarte notificaciones", "buttons": [ @@ -523,47 +425,5 @@ "OK" ], "shouldAccept": true - }, - { - "title": "Iniciar sesión en App Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Iniciar sesión en Game Center", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Iniciar sesión en iTunes Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Iniciar sesión en iMessage", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Iniciar sesión en FaceTime", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Iniciar sesión en iCloud", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json index f027f2c1..57c74c72 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Iniciar sesión en App Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Iniciar sesión en Game Center", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sesión en iTunes Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Iniciar sesión para enviar iMessage", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicia sesión para FaceTime", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Iniciar sesión en iCloud", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, { "title": "Permitir que “%@” actualice tus datos de salud.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Se desconectarán la red Wi-Fi actual y otras cercanas hasta mañana.\n\nWi-Fi seguirá estando disponible para AirDrop, compartir Internet y la precisión de la ubicación.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Se desconectarán la red WLAN actual y otras cercanas hasta mañana.\n\nWLAN seguirá estando disponible para AirDrop, compartir Internet y la precisión de la ubicación.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Se desconectarán los accesorios que están conectados y no se podrán conectar otros.\n\nBluetooth seguirá disponible para Apple Watch, Apple Pencil, compartir Internet y Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” quiere recibir llamadas VoIP en segundo plano", "buttons": [ @@ -353,13 +290,6 @@ ], "shouldAccept": true }, - { - "title": "Inicia sesión con tu Apple ID", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, { "title": "%@ estuvo usando tu ubicación en segundo plano durante los últimos tres días. ¿Quieres seguir permitiéndoselo?", "buttons": [ @@ -430,13 +360,6 @@ ], "shouldAccept": true }, - { - "title": "Activa Bluetooth para permitir que “%@” se conecte a los accesorios", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" quiere enviarte notificaciones", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json index cbf63ea1..6a2f4f9c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json @@ -227,48 +227,6 @@ ], "shouldAccept": true }, - { - "title": "App Storeen kirjautuminen", - "buttons": [ - "Kumoa" - ], - "shouldAccept": true - }, - { - "title": "Game Centeriin kirjautuminen", - "buttons": [ - "Kumoa" - ], - "shouldAccept": true - }, - { - "title": "Kirjaudu iTunes Storeen", - "buttons": [ - "Kumoa" - ], - "shouldAccept": true - }, - { - "title": "iMessageen kirjautuminen", - "buttons": [ - "Kumoa" - ], - "shouldAccept": true - }, - { - "title": "FaceTimeen kirjautumInen", - "buttons": [ - "Kumoa" - ], - "shouldAccept": true - }, - { - "title": "Kirjaudu iCloudiin", - "buttons": [ - "Kumoa" - ], - "shouldAccept": true - }, { "title": "Salli laitteen %@ päivittää terveystietosi.", "buttons": [ @@ -290,27 +248,6 @@ ], "shouldAccept": true }, - { - "title": "Yhteys nykyisiin ja muihin lähellä oleviin Wi-Fi-verkkoihin katkaistaan huomiseen saakka.\n\nWi-Fi toimii edelleen AirDropille, omalle yhteyspisteelle ja sijainnin tarkkuudelle.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Yhteys nykyisiin ja muihin lähellä oleviin WLAN-verkkoihin katkaistaan huomiseen saakka.\n\nWLAN toimii edelleen AirDropille, omalle yhteyspisteelle ja sijainnin tarkkuudelle.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Yhdistettyjen lisälaitteiden yhteydet katkaistaan ja muita lisälaitteita ei voida yhdistää.\n\nBluetooth toimii edelleen Apple Watchin, Apple Pencilin, oman yhteyspisteen ja Handoffin kanssa.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ haluaa vastaanottaa VoIP-puheluja taustalla", "buttons": [ @@ -339,34 +276,6 @@ ], "shouldAccept": true }, - { - "title": "Kirjaudu sisään Apple ID:llä", - "buttons": [ - "Kumoa" - ], - "shouldAccept": true - }, - { - "title": "Yhteys nykyisiin ja muihin lähellä oleviin Wi-Fi-verkkoihin katkaistaan huomiseen saakka.\n\nWi-Fi toimii edelleen AirDropille, omalle hotspotille ja sijainnin tarkkuudelle.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Yhteys nykyisiin ja muihin lähellä oleviin WLAN-verkkoihin katkaistaan huomiseen saakka.\n\nWLAN toimii edelleen AirDropille, omalle hotspotille ja sijainnin tarkkuudelle.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Yhdistettyjen lisälaitteiden yhteydet katkaistaan ja muita lisälaitteita ei voida yhdistää.\n\nBluetooth toimii edelleen Apple Watchin, Apple Pencilin, oman hotspotin ja Handoffin kanssa.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ on käyttänyt sijaintiasi taustalla viimeisen 3 päivän aikana. Sallitaanko sijainnin käyttö taustalla edelleen?", "buttons": [ @@ -451,13 +360,6 @@ ], "shouldAccept": true }, - { - "title": "Laita Bluetooth päälle, jos sallit, että %@ voi yhdistää lisälaitteisiin", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ haluaa lähettää sinulle ilmoituksia", "buttons": [ @@ -514,12 +416,5 @@ "Avaa" ], "shouldAccept": true - }, - { - "title": "iTunes Storeen kirjautuminen", - "buttons": [ - "Kumoa" - ], - "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json index 995e0a4c..a9a612d8 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Se connecter à l’App Store", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à Game Center", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à l’iTunes Store", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à iMessage", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à FaceTime", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à iCloud", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, { "title": "Autorisez « %@ » à mettre à jour vos Données Santé.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Le réseau Wi-Fi actuel et les autres réseaux à proximité seront déconnectés jusqu’à demain.\n\nLa connexion Wi-Fi restera disponible pour AirDrop, le partage de connexion et la précision de votre localisation.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Le réseau WLAN actuel et les autres réseaux à proximité seront déconnectés jusqu’à demain.\n\nLa connexion WLAN restera disponible pour AirDrop, le partage de connexion et la précision de votre localisation.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Les accessoires actuellement connectés seront déconnectés et il ne sera pas possible de connecter d’autres accessoires.\n\nLa connexion Bluetooth restera disponible pour l’Apple Watch, l’Apple Pencil, le partage de connexion et Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "« %@ » souhaite recevoir des appels VoIP à l’arrière-plan.", "buttons": [ @@ -423,13 +360,6 @@ ], "shouldAccept": true }, - { - "title": "Activez Bluetooth pour permettre à « %@ » de se connecter aux accessoires.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Autorisez-vous « %@ » à vous envoyer des notifications ?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json index 6f8ff651..a54cc317 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Se connecter à l’App Store", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à Game Center", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à l’iTunes Store", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à iMessage", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à FaceTime", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, - { - "title": "Se connecter à iCloud", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, { "title": "Autorisez « %@ » à mettre vos données médicales à jour.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Le réseau Wi-Fi actuel et les autres réseaux à proximité seront déconnectés jusqu’à demain.\n\nLa connexion Wi-Fi demeurera disponible pour AirDrop, le partage de connexion et le service de localisation.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Le réseau WLAN actuel et les autres réseaux à proximité seront déconnectés jusqu’à demain.\n\nLa connexion WLAN demeurera disponible pour AirDrop, le partage de connexion et le service de localisation.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Les accessoires actuellement connectés seront déconnectés, et il ne sera pas possible de connecter d’autres accessoires.\n\nLa connexion Bluetooth demeurera disponible pour l’Apple Watch, l’Apple Pencil, le partage de connexion et Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "« %@ » souhaite recevoir des appels VoIP en arrière-plan", "buttons": [ @@ -339,13 +276,6 @@ ], "shouldAccept": true }, - { - "title": "Connexion avec l’identifiant Apple", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, { "title": "« %@ » utilise votre position en arrière-plan depuis les 3 derniers jours. Voulez-vous continuer à autoriser l’utilisation de la position en arrière-plan?", "buttons": [ @@ -416,13 +346,6 @@ ], "shouldAccept": true }, - { - "title": "Activez Bluetooth pour permettre à « %@ » de se connecter aux accessoires.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Autorisez-vous « %@ » à vous envoyer des notifications?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json index cf55d3dc..96160d3d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json @@ -239,48 +239,6 @@ ], "shouldAccept": true }, - { - "title": "התחברות ל-App Store", - "buttons": [ - "ביטול" - ], - "shouldAccept": true - }, - { - "title": "התחברות אל Game Center", - "buttons": [ - "ביטול" - ], - "shouldAccept": true - }, - { - "title": "התחברות ל-iTunes Store", - "buttons": [ - "ביטול" - ], - "shouldAccept": true - }, - { - "title": "התחברות ל-iMessage", - "buttons": [ - "ביטול" - ], - "shouldAccept": true - }, - { - "title": "התחבר/י ל-FaceTime", - "buttons": [ - "ביטול" - ], - "shouldAccept": true - }, - { - "title": "התחברות ל-iCloud", - "buttons": [ - "ביטול" - ], - "shouldAccept": true - }, { "title": "אפשר/י ל-״%@״ לעדכן את נתוני הבריאות שלך.", "buttons": [ @@ -302,27 +260,6 @@ ], "shouldAccept": true }, - { - "title": "החיבור לרשת האלחוטית הנוכחית ולרשתות אלחוטיות קרובות ינותק עד מחר.\n\nהאינטרנט האלחוטי ימשיך להיות זמין עבור AirDrop, נקודת גישה אישית, ולצורך זיהוי מיקום מדויק.", - "buttons": [ - "אישור" - ], - "shouldAccept": true - }, - { - "title": "החיבור לרשת ה-WLAN הנוכחית ולרשתות אלחוטיות קרובות ינותק עד מחר.\n\nחיבור ה-WLAN ימשיך להיות זמין עבור AirDrop, נקודת גישה אישית, ולצורך זיהוי מיקום מדויק.", - "buttons": [ - "אישור" - ], - "shouldAccept": true - }, - { - "title": "אביזרים המחוברים כעת ינותקו, ואביזרים אחרים לא יחוברו.\n\n‏Bluetooth ימשיך להיות זמין עבור Apple Watch,‏ Apple Pencil, נקודת גישה אישית ו-Handoff.", - "buttons": [ - "אישור" - ], - "shouldAccept": true - }, { "title": "״%@״ רוצה לקבל שיחות VoIP ברקע", "buttons": [ @@ -358,13 +295,6 @@ ], "shouldAccept": true }, - { - "title": "התחברות באמצעות Apple ID", - "buttons": [ - "ביטול" - ], - "shouldAccept": true - }, { "title": "‏״%@״ השתמש במיקום שלך ברקע במהלך שלושת הימים האחרונים. האם להמשיך לאפשר שימוש במיקום ברקע?", "buttons": [ @@ -449,13 +379,6 @@ ], "shouldAccept": true }, - { - "title": "הפעל/י את Bluetooth על-מנת לאפשר ל-״%@״ להתחבר לאביזרים", - "buttons": [ - "אישור" - ], - "shouldAccept": true - }, { "title": "״⁨%@⁩״ מעוניין לשלוח לך עדכונים", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index 874815e1..32745c9e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -233,48 +233,6 @@ ], "shouldAccept": true }, - { - "title": "App Store में साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "Game Center में साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "iTunes Store में साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "iMessage में साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "FaceTime में साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "iCloud में साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, { "title": "“%@” को अपना स्वास्थ्य डेटा अपडेट करने की अनुमति दें।", "buttons": [ @@ -296,27 +254,6 @@ ], "shouldAccept": true }, - { - "title": "वर्तमान वाई-फ़ाई नेटवर्क और आस-पास के अन्य नेटवर्क कल तक डिस्कनेक्ट रहेंगे।\n\nAirDrop, निजी हॉटस्पॉट और स्थान सटीकता के लिए वाई-फ़ाई की उपलब्धता बनी रहेगी।", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, - { - "title": "वर्तमान WLAN नेटवर्क और आस-पास के अन्य नेटवर्क कल तक डिस्कनेक्ट रहेंगे।\n\nAirDrop, निजी हॉटस्पॉट और स्थान सटीकता के लिए WLAN की उपलब्धता बनी रहेगी।", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, - { - "title": "वर्तमान में कनेक्टेड सहायक उपकरण डिस्कनेक्ट हो जाएँगे और अन्य सहायक उपकरण कनेक्ट नहीं होंगे।\n\nApple Watch, Apple Pencil, निजी हॉटस्पॉट और Handoff के लिए Bluetooth उपलब्ध रहेगा।", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, { "title": "“%@” माइक्रोफ़ोन का ऐक्सेस चाहता है", "buttons": [ @@ -450,13 +387,6 @@ ], "shouldAccept": true }, - { - "title": "वर्तमान में कनेक्टेड ऐक्सेसरी डिस्कनेक्ट हो जाएँगे और अन्य ऐक्सेसरी कनेक्ट नहीं होंगे।\n\nApple Watch, Apple Pencil, निजी हॉटस्पॉट और Handoff के लिए Bluetooth उपलब्ध रहेगा।", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, { "title": "“%@” को अपना स्थान ऐक्सेस करने की अनुमति दें?", "buttons": [ @@ -494,13 +424,6 @@ ], "shouldAccept": true }, - { - "title": "Apple ID से साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, { "title": "“%@” के द्वारा पिछले 3 दिनों के दौरान पृष्ठभूमि में आपके स्थान का उपयोग किया जा रहा है। क्या आप पृष्ठभूमि स्थान उपयोग की अनुमति जारी रखना चाहते हैं?", "buttons": [ @@ -585,41 +508,6 @@ ], "shouldAccept": true }, - { - "title": "App Store पर साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "Game Center पर साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "iTunes Store पर साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "iMessage पर साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, - { - "title": "FaceTime पर साइन इन करें", - "buttons": [ - "रद्द करें" - ], - "shouldAccept": true - }, { "title": "साइन इन करने के लिए “%@” “%@” का उपयोग करना चाहता है", "buttons": [ @@ -627,13 +515,6 @@ ], "shouldAccept": true }, - { - "title": "“%@” को ऐक्सेसरी से कनेक्ट होने की अनुमति देने के लिए Bluetooth चालू करें", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, { "title": "\"%@\" आपको सूचनाएँ भेजना चाहता है", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json index 9f8b7411..b0df27a9 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json @@ -233,48 +233,6 @@ ], "shouldAccept": true }, - { - "title": "Prijavite se na App Store", - "buttons": [ - "Poništi" - ], - "shouldAccept": true - }, - { - "title": "Prijavite se na Game Center", - "buttons": [ - "Poništi" - ], - "shouldAccept": true - }, - { - "title": "Prijavite se na iTunes Store", - "buttons": [ - "Poništi" - ], - "shouldAccept": true - }, - { - "title": "Prijavite se na iMessage", - "buttons": [ - "Poništi" - ], - "shouldAccept": true - }, - { - "title": "Prijavite se na FaceTime", - "buttons": [ - "Poništi" - ], - "shouldAccept": true - }, - { - "title": "Prijavite se na iCloud", - "buttons": [ - "Poništi" - ], - "shouldAccept": true - }, { "title": "Dozvolite da “%@” ažurira vaše zdravstvene podatke.", "buttons": [ @@ -296,27 +254,6 @@ ], "shouldAccept": true }, - { - "title": "Trenutačna Wi-Fi mreža i druge u blizini bit će odspojene do sutra.\n\nWi-Fi će i dalje biti dostupan za AirDrop, Osobni hotspot i točnost lokacije.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Trenutačna WLAN mreža i druge u blizini bit će odspojene do sutra.\n\nWLAN će i dalje biti dostupan za AirDrop, Osobni hotspot i točnost lokacije.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Odspojit će se trenutačno spojeni pribori i drugi pribori neće se moći spojiti.\n\nBluetooth će i dalje biti dostupan za Apple Watch, Apple Pencil, Osobni hotspot i Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” želi primati VoIP pozive u pozadini", "buttons": [ @@ -368,13 +305,6 @@ ], "shouldAccept": true }, - { - "title": "Prijavite se koristeći Apple ID", - "buttons": [ - "Poništi" - ], - "shouldAccept": true - }, { "title": "Aplikacija “%@” koristila je vašu lokaciju u pozadini tijekom posljednja 3 dana. Želite li nastaviti dozvoliti uporabu lokacije u pozadini?", "buttons": [ @@ -452,13 +382,6 @@ ], "shouldAccept": true }, - { - "title": "Uključite Bluetooth kako bi se “%@” mogao spojiti na dodatni pribor", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" vam želi slati obavijesti", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json index 5ee5947d..b0cf7fb1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json @@ -227,48 +227,6 @@ ], "shouldAccept": true }, - { - "title": "Bejelentkezés az App Store-ba", - "buttons": [ - "Mégsem" - ], - "shouldAccept": true - }, - { - "title": "Bejelentkezés a Game Centerbe", - "buttons": [ - "Mégsem" - ], - "shouldAccept": true - }, - { - "title": "Bejelentkezés az iTunes Store-ba", - "buttons": [ - "Mégsem" - ], - "shouldAccept": true - }, - { - "title": "Bejelentkezés az iMessage-be", - "buttons": [ - "Mégsem" - ], - "shouldAccept": true - }, - { - "title": "Bejelentkezés a FaceTime-ba", - "buttons": [ - "Mégsem" - ], - "shouldAccept": true - }, - { - "title": "Bejelentkezés az iCloudba", - "buttons": [ - "Mégsem" - ], - "shouldAccept": true - }, { "title": "Az egészségügyi adatok frissítésének engedélyezése a(z) „%@” számára.", "buttons": [ @@ -290,27 +248,6 @@ ], "shouldAccept": true }, - { - "title": "A jelenlegi Wi-Fi-hálózat és más közeli hálózatok holnapig le lesznek választva.\n\nA Wi-Fi továbbra is rendelkezésre áll az AirDrophoz, a Személyes Hotspothoz és a helymeghatározás pontossága érdekében.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "A jelenlegi WLAN-hálózat és más közeli hálózatok holnapig le lesznek választva.\n\nA WLAN továbbra is rendelkezésre áll az AirDrophoz, a Személyes Hotspothoz és a helymeghatározás pontossága érdekében.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "A jelenleg csatlakoztatott tartozékok le lesznek választva, és más tartozékok nem fognak kapcsolódni.\n\nA Bluetooth továbbra is rendelkezésre áll az Apple Watchhoz, az Apple Pencilhez, a Személyes Hotspothoz és a Handoffhoz.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "A(z) „%@” VoIP-hívásokat szeretne fogadni a háttérben", "buttons": [ @@ -339,13 +276,6 @@ ], "shouldAccept": true }, - { - "title": "Jelentkezzen be Apple ID-val", - "buttons": [ - "Mégsem" - ], - "shouldAccept": true - }, { "title": "A(z) „%@” 3 három napja használja az Ön helyzetét a háttérben. Szeretné továbbra is engedélyezni a helyzet háttérben történő használatát?", "buttons": [ @@ -451,13 +381,6 @@ ], "shouldAccept": true }, - { - "title": "Kapcsolja be a Bluetooth-ot, hogy a(z) „%@” számára engedélyezze a kiegészítőkhöz való csatlakozást", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "A(z) „%@\" értesítéseket szeretne Önnek küldeni", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json index 6ec58403..9f6be1cf 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json @@ -238,48 +238,6 @@ ], "shouldAccept": true }, - { - "title": "Masuk ke App Store", - "buttons": [ - "Batalkan" - ], - "shouldAccept": true - }, - { - "title": "Masuk ke Game Center", - "buttons": [ - "Batalkan" - ], - "shouldAccept": true - }, - { - "title": "Masuk ke iTunes Store", - "buttons": [ - "Batalkan" - ], - "shouldAccept": true - }, - { - "title": "Masuk ke iMessage", - "buttons": [ - "Batalkan" - ], - "shouldAccept": true - }, - { - "title": "Masuk ke FaceTime", - "buttons": [ - "Batalkan" - ], - "shouldAccept": true - }, - { - "title": "Masuk ke iCloud", - "buttons": [ - "Batalkan" - ], - "shouldAccept": true - }, { "title": "Izinkan “%@” untuk memperbarui data kesehatan Anda.", "buttons": [ @@ -301,27 +259,6 @@ ], "shouldAccept": true }, - { - "title": "Jaringan Wi-Fi saat ini dan jaringan terdekat lainnya akan diputuskan hingga besok.\n\nWi-Fi akan lanjut tersedia untuk AirDrop, Hotspot Pribadi, dan akurasi lokasi.", - "buttons": [ - "OKE" - ], - "shouldAccept": true - }, - { - "title": "Jaringan WLAN saat ini dan jaringan terdekat lainnya akan diputuskan hingga besok.\n\nWLAN akan lanjut tersedia untuk AirDrop, Hotspot Pribadi, dan akurasi lokasi.", - "buttons": [ - "OKE" - ], - "shouldAccept": true - }, - { - "title": "Aksesori yang saat ini terhubung akan diputuskan dan aksesori lainnya tidak akan terhubung.\n\nBluetooth akan lanjut tersedia untuk Apple Watch, Apple Pencil, Hotspot Pribadi, dan Handoff.", - "buttons": [ - "OKE" - ], - "shouldAccept": true - }, { "title": "“%@” Ingin Menerima Panggilan VoIP di Latar Belakang", "buttons": [ @@ -350,13 +287,6 @@ ], "shouldAccept": true }, - { - "title": "Masuk dengan ID Apple", - "buttons": [ - "Batalkan" - ], - "shouldAccept": true - }, { "title": "“%@” telah menggunakan lokasi Anda di latar belakang selama 3 hari terakhir. Apakah Anda ingin terus mengizinkan penggunaan lokasi di latar belakang?", "buttons": [ @@ -434,13 +364,6 @@ ], "shouldAccept": true }, - { - "title": "Nyalakan Bluetooth untuk Mengizinkan “%@” Terhubung ke Aksesori", - "buttons": [ - "OKE" - ], - "shouldAccept": true - }, { "title": "\"%@\" Ingin Mengirimi Anda Pemberitahuan", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json index 2b10912e..9ba3a7af 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Accedi ad App Store", - "buttons": [ - "Annulla" - ], - "shouldAccept": true - }, - { - "title": "Accedi a Game Center", - "buttons": [ - "Annulla" - ], - "shouldAccept": true - }, - { - "title": "Accedi a iTunes Store", - "buttons": [ - "Annulla" - ], - "shouldAccept": true - }, - { - "title": "Accedi a iMessage", - "buttons": [ - "Annulla" - ], - "shouldAccept": true - }, - { - "title": "Accedi a FaceTime", - "buttons": [ - "Annulla" - ], - "shouldAccept": true - }, - { - "title": "Accedi a iCloud", - "buttons": [ - "Annulla" - ], - "shouldAccept": true - }, { "title": "Consenti a “%@” di aggiornare i tuoi dati sanitari.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "La connessione alla rete Wi-Fi attuale e ad altre reti nelle vicinanze rimarrà inattiva fino a domani.\n\nLa connessione Wi-Fi continuerà a essere disponibile per AirDrop, per l'hotspot personale e per garantire l'esattezza della posizione.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "La connessione alla rete WLAN attuale e ad altre reti nelle vicinanze rimarrà inattiva fino a domani.\n\nLa connessione WLAN continuerà a essere disponibile per AirDrop, per l'hotspot personale e per garantire l'esattezza della posizione.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Gli accessori attualmente connessi verranno disconnessi e non sarà possibile connetterne altri.\n\nLa connessione Bluetooth continuerà a essere disponibile per Apple Watch, Apple Pencil, Handoff e per l'hotspot personale.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” desidera ricevere chiamate VoIP in background", "buttons": [ @@ -346,13 +283,6 @@ ], "shouldAccept": true }, - { - "title": "Accedi con il tuo ID Apple", - "buttons": [ - "Annulla" - ], - "shouldAccept": true - }, { "title": "“%@” ha utilizzato in background la tua posizione negli ultimi 3 giorni. Vuoi continuare a consentire l'utilizzo della posizione in background?", "buttons": [ @@ -465,13 +395,6 @@ ], "shouldAccept": true }, - { - "title": "Attiva Bluetooth per consentire a “%@” di connettersi agli accessori", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" vorrebbe inviarti delle notifiche", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json index 5956d529..12aa9932 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json @@ -227,48 +227,6 @@ ], "shouldAccept": true }, - { - "title": "App Storeにサインイン", - "buttons": [ - "キャンセル" - ], - "shouldAccept": true - }, - { - "title": "Game Centerにサインイン", - "buttons": [ - "キャンセル" - ], - "shouldAccept": true - }, - { - "title": "iTunes Storeにサインイン", - "buttons": [ - "キャンセル" - ], - "shouldAccept": true - }, - { - "title": "iMessageにサインイン", - "buttons": [ - "キャンセル" - ], - "shouldAccept": true - }, - { - "title": "FaceTimeにサインイン", - "buttons": [ - "キャンセル" - ], - "shouldAccept": true - }, - { - "title": "iCloudにサインイン", - "buttons": [ - "キャンセル" - ], - "shouldAccept": true - }, { "title": "“%@”にヘルスケアデータのアップデートを許可します。", "buttons": [ @@ -290,27 +248,6 @@ ], "shouldAccept": true }, - { - "title": "現在のWi-Fiネットワークおよびほかの近くのネットワークは明日まで接続を解除されます。\n\nWi-Fiは引き続きAirDrop、インターネット共有、および位置情報の精度の向上で利用可能です。", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "現在のWLANネットワークおよびほかの近くのネットワークは明日まで接続を解除されます。\n\nWLANは引き続きAirDrop、インターネット共有、および位置情報の精度の向上で利用可能です。", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "現在接続されているアクセサリは接続を解除され、ほかのアクセサリは接続しません。\n\nBluetoothは引き続きApple Watch、Apple Pencil、インターネット共有、およびHandoffで利用可能です。", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@”がバックグラウンドでVoIP通話の受信を求めています", "buttons": [ @@ -339,13 +276,6 @@ ], "shouldAccept": true }, - { - "title": "Apple IDでサインイン", - "buttons": [ - "キャンセル" - ], - "shouldAccept": true - }, { "title": "“%@”は、過去3日間に渡って位置情報をバックグラウンドで利用しています。バックグラウンドでの位置情報の利用を許可したままにしますか?", "buttons": [ @@ -423,13 +353,6 @@ ], "shouldAccept": true }, - { - "title": "“%@”がアクセサリに接続できるようにするには、Bluetoothをオンにしてください。", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\"は通知を送信します。よろしいですか?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index 627a956c..5bae05d9 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -238,48 +238,6 @@ ], "shouldAccept": true }, - { - "title": "App Store에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, - { - "title": "Game Center에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, - { - "title": "iTunes Store에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, - { - "title": "iMessage에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, - { - "title": "FaceTime에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, - { - "title": "iCloud에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, { "title": "사용자의 건강 데이터를 업데이트하려면 ‘%@’을(를) 허용하십시오.", "buttons": [ @@ -302,27 +260,6 @@ ], "shouldAccept": true }, - { - "title": "현재 Wi-Fi 네트워크 및 기타 주변 네트워크는 내일까지 연결이 해제됩니다.\n\nAirDrop, 개인용 핫스팟 및 위치 정확도 기능에는 Wi-Fi가 계속 사용됩니다.", - "buttons": [ - "확인" - ], - "shouldAccept": true - }, - { - "title": "현재 WLAN 네트워크 및 기타 주변 네트워크는 내일까지 연결이 해제됩니다.\n\nAirDrop, 개인용 핫스팟 및 위치 정확도 기능에는 WLAN이 계속 사용됩니다.", - "buttons": [ - "확인" - ], - "shouldAccept": true - }, - { - "title": "현재 연결된 액세서리는 연결 해제되며 다른 액세서리는 연결되지 않습니다.\n\nApple Watch, Apple Pencil, 개인용 핫스팟 및 Handoff에서는 Bluetooth를 계속 사용할 수 있습니다.", - "buttons": [ - "확인" - ], - "shouldAccept": true - }, { "title": "‘%@’ 앱이 Face ID를 사용하도록 허용하겠습니까?", "buttons": [ @@ -354,41 +291,6 @@ ], "shouldAccept": true }, - { - "title": "App Store에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, - { - "title": "Game Center에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, - { - "title": "iTunes Store에 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, - { - "title": "현재 Wi‑Fi 네트워크 및 기타 주변 네트워크는 내일까지 연결이 해제됩니다.\n\nAirDrop, 개인용 핫스팟 및 위치 정확도 기능에는 Wi‑Fi가 계속 사용됩니다.", - "buttons": [ - "확인" - ], - "shouldAccept": true - }, - { - "title": "현재 연결된 액세서리는 연결 해제되며 다른 액세서리는 연결되지 않습니다.\n\nApple Watch, Apple Pencil, 개인용 핫스팟 및 Handoff에서는 Bluetooth를 계속 사용할 수 있습니다.", - "buttons": [ - "확인" - ], - "shouldAccept": true - }, { "title": "‘%@’이(가) Apple Music, 사용자의 음악 및 비디오 관련 활동 및 사용자의 미디어 보관함에 접근하려고 합니다", "buttons": [ @@ -417,13 +319,6 @@ ], "shouldAccept": true }, - { - "title": "Apple ID로 로그인", - "buttons": [ - "취소" - ], - "shouldAccept": true - }, { "title": "‘%@’이(가) 지난 3일간 백그라운드에서 사용자의 위치를 사용했습니다. 백그라운드에서의 위치 사용을 계속 허용하겠습니까?", "buttons": [ @@ -522,13 +417,6 @@ ], "shouldAccept": true }, - { - "title": "‘%@’에서 액세서리에 연결하도록 허용하려면 Bluetooth를 켜십시오.", - "buttons": [ - "승인" - ], - "shouldAccept": true - }, { "title": "'%@'에서 알림을 보내고자 합니다.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json index 23b81f8e..0d4eaf89 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json @@ -236,48 +236,6 @@ ], "shouldAccept": true }, - { - "title": "Daftar Masuk ke App Store", - "buttons": [ - "Batal" - ], - "shouldAccept": true - }, - { - "title": "Daftar Masuk ke Game Center", - "buttons": [ - "Batal" - ], - "shouldAccept": true - }, - { - "title": "Daftar Masuk ke iTunes Store", - "buttons": [ - "Batal" - ], - "shouldAccept": true - }, - { - "title": "Daftar Masuk ke iMessage", - "buttons": [ - "Batal" - ], - "shouldAccept": true - }, - { - "title": "Daftar Masuk ke FaceTime", - "buttons": [ - "Batal" - ], - "shouldAccept": true - }, - { - "title": "Daftar Masuk ke iCloud", - "buttons": [ - "Batal" - ], - "shouldAccept": true - }, { "title": "Benarkan “%@” untuk mengemas kini data kesihatan anda.", "buttons": [ @@ -299,27 +257,6 @@ ], "shouldAccept": true }, - { - "title": "Rangkaian Wi-Fi semasa dan rangkaian lain yang berdekatan akan diputuskan sambungan sehingga esok.\n\nWi-Fi akan terus tersedia untuk AirDrop, Hotspot Peribadi dan ketepatan lokasi.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Rangkaian WLAN semasa dan rangkaian lain yang berdekatan akan diputuskan sambungan sehingga esok.\n\nWLAN akan terus tersedia untuk AirDrop, Hotspot Peribadi dan ketepatan lokasi.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Aksesori yang disambungkan pada masa ini akan diputuskan sambungan dan aksesori lain tidak akan bersambung.\n\nBluetooth akan terus tersedia untuk Apple Watch, Apple Pencil, Hotspot Peribadi dan Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Mahu Menerima Panggilan VoIP di Latar Belakang", "buttons": [ @@ -355,13 +292,6 @@ ], "shouldAccept": true }, - { - "title": "Daftar Masuk dengan Apple ID", - "buttons": [ - "Batal" - ], - "shouldAccept": true - }, { "title": "“%@” sedang menggunakan lokasi anda di latar belakang sepanjang 3 hari lalu. Adakah anda mahu terus membenarkan penggunaan lokasi latar belakang?", "buttons": [ @@ -474,13 +404,6 @@ ], "shouldAccept": true }, - { - "title": "Aktifkan Bluetooth untuk Membenarkan “%@” Bersambung ke Aksesori", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" Mahu Menghantar Pemberitahuan Kepada Anda", "buttons": [ @@ -537,19 +460,5 @@ "Benarkan" ], "shouldAccept": true - }, - { - "title": "Aktifkan Bluetooth untuk Membenarkan “%@” untuk Bersambung ke Aksesori", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Daftar masuk ke FaceTime", - "buttons": [ - "Batal" - ], - "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json index d09a727d..5ee5c41e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json @@ -269,48 +269,6 @@ ], "shouldAccept": true }, - { - "title": "Log in bij de App Store", - "buttons": [ - "Annuleer" - ], - "shouldAccept": true - }, - { - "title": "Log in bij Game Center", - "buttons": [ - "Annuleer" - ], - "shouldAccept": true - }, - { - "title": "Log in bij de iTunes Store", - "buttons": [ - "Annuleer" - ], - "shouldAccept": true - }, - { - "title": "Log in bij iMessage", - "buttons": [ - "Annuleer" - ], - "shouldAccept": true - }, - { - "title": "Log in bij FaceTime", - "buttons": [ - "Annuleer" - ], - "shouldAccept": true - }, - { - "title": "Log in bij iCloud", - "buttons": [ - "Annuleer" - ], - "shouldAccept": true - }, { "title": "Sta toe dat %@ je gezondheidsgegevens bijwerkt.", "buttons": [ @@ -332,27 +290,6 @@ ], "shouldAccept": true }, - { - "title": "Het huidige wifinetwerk en andere netwerken in de buurt worden tot morgen losgekoppeld. Wifi blijft beschikbaar voor AirDrop, 'Persoonlijke hotspot' en de nauwkeurigheid van de locatie.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Het huidige WLAN-netwerk en andere netwerken in de buurt worden tot morgen losgekoppeld. WLAN blijft beschikbaar voor AirDrop, 'Persoonlijke hotspot' en de nauwkeurigheid van de locatie.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Gekoppelde accessoires worden losgekoppeld en andere accessoires worden niet gekoppeld.\n\nBluetooth blijft beschikbaar voor Apple Watch, Apple Pencil, 'Persoonlijke hotspot' en Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "'%@' wil VoIP-gesprekken op de achtergrond ontvangen", "buttons": [ @@ -381,13 +318,6 @@ ], "shouldAccept": true }, - { - "title": "Log in met Apple ID", - "buttons": [ - "Annuleer" - ], - "shouldAccept": true - }, { "title": "'%@' heeft de afgelopen 3 dagen je locatie op de achtergrond gebruikt. Wil je blijven toestaan dat je locatie op de achtergrond wordt gebruikt?", "buttons": [ @@ -507,13 +437,6 @@ ], "shouldAccept": true }, - { - "title": "Log in op iCloud", - "buttons": [ - "Annuleer" - ], - "shouldAccept": true - }, { "title": "Sta toe dat %@ uw gezondheidsgegevens bijwerkt.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json index a6abecfb..25bfbb47 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Logg på App Store", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logg på Game Center", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logg på iTunes Store", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logg på iMessage", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logg på FaceTime", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logg på iCloud", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, { "title": "Gi «%@» tillatelse til å oppdatere helsedataene dine.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Det gjeldende Wi-Fi-nettverket og andre nettverk i nærheten vil være frakoblet til i morgen.\n\nWi-Fi vil fortsatt være tilgjengelig for AirDrop, Delt Internett og stedsnøyaktighet.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Det gjeldende WLAN-nettverket og andre nettverk i nærheten vil være frakoblet til i morgen.\n\nWLAN vil fortsatt være tilgjengelig for AirDrop, Delt Internett og stedsnøyaktighet.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Alt tilkoblet tilbehør vil bli koblet fra, og annet tilbehør vil ikke kunne koble til.\n\nBluetooth vil fortsatt være tilgjengelig for Apple Watch, Apple Pencil, Delt Internett og Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ vil motta VoIP-anrop i bakgrunnen", "buttons": [ @@ -353,34 +290,6 @@ ], "shouldAccept": true }, - { - "title": "Logg på med Apple‑ID", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Det gjeldende Wi-Fi-nettverket og andre nettverk i nærheten vil være frakoblet til i morgen.\n\nWi-Fi vil fortsatt være tilgjengelig for AirDrop, Delt internett og stedsnøyaktighet.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Det gjeldende WLAN-nettverket og andre nettverk i nærheten vil være frakoblet til i morgen.\n\nWLAN vil fortsatt være tilgjengelig for AirDrop, Delt internett og stedsnøyaktighet.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Alt tilkoblet tilbehør vil bli koblet fra, og annet tilbehør vil ikke kunne koble til.\n\nBluetooth vil fortsatt være tilgjengelig for Apple Watch, Apple Pencil, Delt internett og Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "%@ har brukt posisjonen din i bakgrunnen de siste 3 dagene. Vil du fortsatt tillate bruk av posisjonen din i bakgrunnen?", "buttons": [ @@ -570,13 +479,6 @@ ], "shouldAccept": true }, - { - "title": "Slå på Bluetooth for å tillate at «%@» kobler til Tilbehør", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "«%@» vil sende deg varslinger", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json index 81f1b0cc..85989deb 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json @@ -220,48 +220,6 @@ ], "shouldAccept": true }, - { - "title": "Zaloguj się do App Store", - "buttons": [ - "Anuluj" - ], - "shouldAccept": true - }, - { - "title": "Zaloguj się do Game Center", - "buttons": [ - "Anuluj" - ], - "shouldAccept": true - }, - { - "title": "Zaloguj się do iTunes Store", - "buttons": [ - "Anuluj" - ], - "shouldAccept": true - }, - { - "title": "Zaloguj się do iMessage", - "buttons": [ - "Anuluj" - ], - "shouldAccept": true - }, - { - "title": "Zaloguj się do FaceTime", - "buttons": [ - "Anuluj" - ], - "shouldAccept": true - }, - { - "title": "Zaloguj się do iCloud", - "buttons": [ - "Anuluj" - ], - "shouldAccept": true - }, { "title": "Pozwala „%@” uaktualniać Twoje dane zdrowotne.", "buttons": [ @@ -283,27 +241,6 @@ ], "shouldAccept": true }, - { - "title": "Urządzenie pozostanie rozłączone z bieżącą siecią Wi-Fi oraz pobliskimi sieciami do jutra.\n\nSieć Wi-Fi będzie nadal dostępna na potrzeby funkcji AirDrop i Hotspot osobisty oraz będzie używana w celu dokładniejszego ustalania położenia.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Urządzenie pozostanie rozłączone z bieżącą siecią WLAN oraz pobliskimi sieciami do jutra.\n\nSieć WLAN będzie nadal dostępna na potrzeby funkcji AirDrop i Hotspot osobisty oraz będzie używana w celu dokładniejszego ustalania położenia.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Połączone obecnie akcesoria zostaną rozłączone, a łączenie z nowymi nie będzie możliwe.\n\nBluetooth będzie nadal dostępny na potrzeby łączenia z Apple Watch i Apple Pencil oraz funkcji Hotspot osobisty i Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@” chce odbierać połączenia VoIP w tle", "buttons": [ @@ -318,13 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Zaloguj się, podając Apple ID", - "buttons": [ - "Anuluj" - ], - "shouldAccept": true - }, { "title": "Pozwala aplikacji „%@” uaktualniać Twoje dane zdrowotne.", "buttons": [ @@ -451,13 +381,6 @@ ], "shouldAccept": true }, - { - "title": "Aby używać akcesoriów z „%@”, włącz Bluetooth.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "„%@\" chce wysyłać Ci powiadomienia", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json index 497c76c9..e51e0163 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Inicie a Sessão na App Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie a Sessão no Game Center", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie a Sessão na iTunes Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie a Sessão no iMessage", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie a Sessão no FaceTime", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie a Sessão no iCloud", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, { "title": "Permitir que “%@” atualize seus dados de saúde.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "A rede Wi-Fi atual e outras redes por perto serão desconectadas até amanhã.\n\nO Wi-Fi continuará disponível para o AirDrop, Acesso Pessoal e precisão da localização.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "A rede WLAN atual e outras redes por perto serão desconectadas até amanhã.\n\nO WLAN continuará disponível para o AirDrop, Acesso Pessoal e precisão da localização.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Os acessórios conectados atualmente serão desconectados e outros acessórios não se conectarão.\n\nO Bluetooth continuará disponível para o Apple Watch, Apple Pencil, Acesso Pessoal e Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” Deseja Receber Ligações de VoIP em Segundo Plano", "buttons": [ @@ -353,13 +290,6 @@ ], "shouldAccept": true }, - { - "title": "Inicie a Sessão com o ID Apple", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, { "title": "“%@” tem usado a sua localização em segundo plano nos últimos 3 dias. Deseja continuar permitindo o uso da localização em segundo plano?", "buttons": [ @@ -465,13 +395,6 @@ ], "shouldAccept": true }, - { - "title": "Ative o Bluetooth para Permitir que “%@” se Conecte a Acessórios", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" Deseja Enviar Notificações", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json index 59cc97a3..a17de20d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Inicie sessão na App Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie sessão no Game Center", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie sessão na iTunes Store", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie sessão no iMessage", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie sessão no FaceTime", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie sessão em iCloud", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, { "title": "Permitir que “%@” atualize os seus dados de saúde.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "A rede Wi‑Fi atual e outras próximas serão desligadas até amanhã.\n\nA ligação Wi‑Fi continuará a estar disponível para AirDrop, hotspot pessoal e precisão da localização.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "A rede WLAN atual e outras próximas serão desligadas até amanhã.\n\nA ligação WLAN continuará a estar disponível para AirDrop, hotspot pessoal e precisão da localização.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Os acessórios ligados serão desligados e outros acessórios não poderão estabelecer ligação.\n\nO Bluetooth continuará a estar disponível para usar com o Apple Watch, Apple Pencil, hotspot pessoal e Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” gostaria de receber chamadas VoIP em segundo plano", "buttons": [ @@ -360,20 +297,6 @@ ], "shouldAccept": true }, - { - "title": "Inicie sessão com o ID Apple", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, - { - "title": "Inicie sessão em iMessage", - "buttons": [ - "Cancelar" - ], - "shouldAccept": true - }, { "title": "“%@” tem estado a usar a sua localização em segundo plano nos últimos 3 dias. Deseja continuar a permitir o uso em segundo plano?", "buttons": [ @@ -444,13 +367,6 @@ ], "shouldAccept": true }, - { - "title": "Ative Bluetooth para permitir que “%@” estabeleça ligação com os acessórios.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" gostaria de lhe enviar notificações", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json index 9a806102..aecebbf0 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Autentificați-vă în App Store", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați-vă în Game Center", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați-vă în iTunes Store", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați-vă la iMessage", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați-vă la FaceTime", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați-vă pe iCloud", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, { "title": "Permiteți ca aplicația “%@” să actualizeze datele dvs. de sănătate.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Rețeaua Wi‑Fi actuală și altele din apropiere vor fi deconectate până mâine.\n\nConexiunea Wi‑Fi va fi disponibilă în continuare pentru AirDrop, Hotspot personal și precizia localizării.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Rețeaua WLAN actuală și altele din apropiere vor fi deconectate până mâine.\n\nConexiunea WLAN va fi disponibilă în continuare pentru AirDrop, Hotspot personal și precizia localizării.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Accesoriile conectate în prezent vor fi deconectate și nu se vor conecta alte accesorii.\n\nConexiunea Bluetooth va fi disponibilă în continuare pentru Apple Watch, Apple Pencil, Hotspot personal și Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” ar dori să primească apeluri VoIP în fundal", "buttons": [ @@ -346,41 +283,6 @@ ], "shouldAccept": true }, - { - "title": "Autentificați‑vă în Game Center", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați‑vă cu ID‑ul Apple", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați‑vă la iMessage", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați‑vă la FaceTime", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, - { - "title": "Autentificați‑vă pe iCloud", - "buttons": [ - "Anulați" - ], - "shouldAccept": true - }, { "title": "“%@” v‑a utilizat localizarea în fundal pe parcursul ultimelor 3 zile. Doriți să permiteți în continuare utilizarea localizării în fundal?", "buttons": [ @@ -458,13 +360,6 @@ ], "shouldAccept": true }, - { - "title": "Activați Bluetooth pentru a permite conectarea “%@” la accesorii", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" ar dori să vă trimită notificări", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json index 58b5ca80..31cd6a61 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json @@ -226,48 +226,6 @@ ], "shouldAccept": true }, - { - "title": "Войти в App Store", - "buttons": [ - "Отменить" - ], - "shouldAccept": true - }, - { - "title": "Вход в Game Center", - "buttons": [ - "Отменить" - ], - "shouldAccept": true - }, - { - "title": "Вход в iTunes Store", - "buttons": [ - "Отменить" - ], - "shouldAccept": true - }, - { - "title": "Вход в iMessage", - "buttons": [ - "Отменить" - ], - "shouldAccept": true - }, - { - "title": "Вход в FaceTime", - "buttons": [ - "Отменить" - ], - "shouldAccept": true - }, - { - "title": "Вход в iCloud", - "buttons": [ - "Отменить" - ], - "shouldAccept": true - }, { "title": "Разрешить «%@» обновлять Ваши медданные.", "buttons": [ @@ -289,27 +247,6 @@ ], "shouldAccept": true }, - { - "title": "Сети Wi-Fi в зоне доступа, включая текущую, будут отключены до завтра.\n\nWi-Fi будет по-прежнему доступен для функции AirDrop, режима модема и точного определения геопозиции.", - "buttons": [ - "ОК" - ], - "shouldAccept": true - }, - { - "title": "Сети WLAN в зоне доступа, включая текущую, будут отключены до завтра.\n\nWLAN будет по-прежнему доступен для функции AirDrop, режима модема и точного определения геопозиции.", - "buttons": [ - "ОК" - ], - "shouldAccept": true - }, - { - "title": "Подключенные в настоящий момент аксессуары будут отключены, а другие аксессуары подключаться не будут.\n\nBluetooth будет по-прежнему доступен для Apple Watch, Apple Pencil, функции Handoff и режима модема.", - "buttons": [ - "ОК" - ], - "shouldAccept": true - }, { "title": "Ресурс «%@» запрашивает разрешение на получение вызовов VoIP в фоновом режиме.", "buttons": [ @@ -438,13 +375,6 @@ ], "shouldAccept": true }, - { - "title": "Вход с Apple ID", - "buttons": [ - "Отменить" - ], - "shouldAccept": true - }, { "title": "Приложение «%1$@» запрашивает разрешение на доступ к учетным записям %2$@", "buttons": [ @@ -557,13 +487,6 @@ ], "shouldAccept": true }, - { - "title": "Включите Bluetooth, чтобы разрешить «%@» подключение к аксессуарам", - "buttons": [ - "ОК" - ], - "shouldAccept": true - }, { "title": "Программа «%@» запрашивает разрешение на отправку Вам уведомлений.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json index c776aa99..bb0f72bf 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json @@ -241,13 +241,6 @@ ], "shouldAccept": true }, - { - "title": "Prihláste sa do Game Center", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, { "title": "Prihláste sa do iTunes Storu", "buttons": [ @@ -255,27 +248,6 @@ ], "shouldAccept": true }, - { - "title": "Prihláste sa do iMessage", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, - { - "title": "Prihláste sa do FaceTime", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, - { - "title": "Prihláste sa do iCloudu", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, { "title": "Povoliť aplikácii „%@“ aktualizovať vaše zdravotné dáta.", "buttons": [ @@ -297,27 +269,6 @@ ], "shouldAccept": true }, - { - "title": "Aktuálna Wi-Fi sieť a ostatné okolité siete budú odpojené do zajtrajšieho dňa.\n\nWi-Fi bude aj naďalej k dispozícii pre AirDrop, Zdieľanie internetu a vylepšovanie presnosti polohy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Aktuálna WLAN sieť a ostatné okolité siete budú odpojené do zajtrajšieho dňa.\n\nWLAN bude aj naďalej k dispozícii pre AirDrop, Zdieľanie internetu a vylepšovanie presnosti polohy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Aktuálne pripojené príslušenstvá budú odpojené a ďalšie príslušenstvá sa nepripoja.\n\nBluetooth bude aj naďalej k dispozícii pre Apple Watch, Apple Pencil, Zdieľanie internetu a Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Aplikácia „%@“ chce prijímať VoIP hovory na pozadí", "buttons": [ @@ -423,34 +374,6 @@ ], "shouldAccept": true }, - { - "title": "Prihláste sa použitím Apple ID", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, - { - "title": "Aktuálna Wi-Fi sieť a ostatné okolité siete budú odpojené do zajtrajšieho dňa.\n\nWi-Fi bude aj naďalej k dispozícii pre AirDrop, Osobný hotspot a vylepšovanie presnosti polohy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Aktuálna WLAN sieť a ostatné okolité siete budú odpojené do zajtrajšieho dňa.\n\nWLAN bude aj naďalej k dispozícii pre AirDrop, Osobný hotspot a vylepšovanie presnosti polohy.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Aktuálne pripojené príslušenstvá budú odpojené a ďalšie príslušenstvá sa nepripoja.\n\nBluetooth bude aj naďalej k dispozícii pre Apple Watch, Apple Pencil, Osobný hotspot a Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Apka „%@“ počas posledných 3 dní používala vašu polohu na pozadí. Chcete, aby aj naďalej mohla používať vašu polohu na pozadí?", "buttons": [ @@ -549,20 +472,6 @@ ], "shouldAccept": true }, - { - "title": "Prihláste sa do App Store", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, - { - "title": "Prihláste sa do iTunes Store", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, { "title": "„%@“ chce na prihlásenie použiť „%@“", "buttons": [ @@ -570,13 +479,6 @@ ], "shouldAccept": true }, - { - "title": "Ak chcete povoliť aplikácii „%@“ pripojiť sa k príslušenstvu, zapnite Bluetooth", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "Webová stránka „%@“ chce použiť vašu aktuálnu polohu", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json index 7b227b08..77a785f1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Logga in på App Store", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logga in på Game Center", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logga in på iTunes Store", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logga in på iMessage", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logga in på FaceTime", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, - { - "title": "Logga in på iCloud", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, { "title": "Tillåt att ”%@” uppdaterar dina hälsodata.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Det aktuella Wi-Fi-nätverket och andra i närheten kopplas från tills imorgon.\n\nWi-Fi är fortfarande tillgängligt för AirDrop, Internetdelning och noggrannhet vid platsbestämning.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Det aktuella WLAN-nätverket och andra i närheten kopplas från tills imorgon.\n\nWLAN är fortfarande tillgängligt för AirDrop, Internetdelning och noggrannhet vid platsbestämning.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Tillbehör som är anslutna just nu kopplas från och andra tillbehör ansluter inte.\n\nBluetooth är fortfarande tillgängligt för Apple Watch, Apple Pencil, Internetdelning och Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "”%@” vill ta emot VoIP-samtal i bakgrunden", "buttons": [ @@ -346,13 +283,6 @@ ], "shouldAccept": true }, - { - "title": "Logga in med Apple-ID", - "buttons": [ - "Avbryt" - ], - "shouldAccept": true - }, { "title": "”%@” har använt din platsinformation i bakgrunden under de senaste 3 dagarna. Vill du fortsätta att tillåta användning av platsinformation i bakgrunden?", "buttons": [ @@ -423,13 +353,6 @@ ], "shouldAccept": true }, - { - "title": "Slå på Bluetooth om du vill låta ”%@” ansluta till tillbehör", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" vill skicka notiser till dig", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json index ff966323..d1c585de 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "ลงชื่อเข้า App Store", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, - { - "title": "ลงชื่อเข้า Game Center", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, - { - "title": "ลงชื่อเข้า iTunes Store", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, - { - "title": "ลงชื่อเข้า iMessage", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, - { - "title": "ลงชื่อเข้า FaceTime", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, - { - "title": "ลงชื่อเข้า iCloud", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, { "title": "อนุญาตให้ “%@” อัพเดทข้อมูลสุขภาพของคุณ", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "ระบบจะเลิกเชื่อมต่อกับเครือข่าย Wi-Fi ปัจจุบันและเครือข่ายอื่นๆ ที่อยู่ใกล้เคียงจนถึงวันพรุ่งนี้\n\nแต่คุณจะยังคงสามารถใช้ Wi-Fi กับ AirDrop, ฮอตสปอตส่วนบุคคล และความแม่นยำของตำแหน่งที่ตั้งได้", - "buttons": [ - "ตกลง" - ], - "shouldAccept": true - }, - { - "title": "ระบบจะเลิกเชื่อมต่อกับเครือข่าย WLAN ปัจจุบันและเครือข่ายอื่นๆ ที่อยู่ใกล้เคียงจนถึงวันพรุ่งนี้\n\nแต่คุณจะยังคงสามารถใช้ WLAN กับ AirDrop, ฮอตสปอตส่วนบุคคล และความแม่นยำของตำแหน่งที่ตั้งได้", - "buttons": [ - "ตกลง" - ], - "shouldAccept": true - }, - { - "title": "ระบบจะเลิกเชื่อมต่อกับอุปกรณ์เสริมที่เชื่อมต่ออยู่ในขณะนี้และอุปกรณ์เสริมอื่นๆ จะไม่เชื่อมต่อ\n\nแต่คุณจะยังคงสามารถใช้บลูทูธกับ Apple Watch, Apple Pencil, ฮอตสปอตส่วนบุคคล และ Handoff ได้", - "buttons": [ - "ตกลง" - ], - "shouldAccept": true - }, { "title": "“%@” ต้องการที่จะรับสายโทรผ่าน VoIP อยู่เบื้องหลัง", "buttons": [ @@ -367,13 +304,6 @@ ], "shouldAccept": true }, - { - "title": "ลงชื่อเข้าด้วย Apple ID", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, { "title": "“%@” ได้ใช้ตำแหน่งที่ตั้งของคุณอยู่เบื้องหลังในช่วง 3 วันที่ผ่านมา คุณต้องการอนุญาตการใช้ตำแหน่งที่ตั้งอยู่เบื้องหลังนี้ต่อหรือไม่", "buttons": [ @@ -444,20 +374,6 @@ ], "shouldAccept": true }, - { - "title": "ลงชื่อเข้าใช้ iMessage", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, - { - "title": "ลงชื่อเข้าใช้ FaceTime", - "buttons": [ - "ยกเลิก" - ], - "shouldAccept": true - }, { "title": "อนุญาต “%@” ให้อัพเดทข้อมูลสุขภาพของคุณ", "buttons": [ @@ -472,13 +388,6 @@ ], "shouldAccept": true }, - { - "title": "เปิดใช้งานบลูทูธเพื่ออนุญาต “%@” ให้เชื่อมต่อกับอุปกรณ์เสริม", - "buttons": [ - "ตกลง" - ], - "shouldAccept": true - }, { "title": "\"%@\" ต้องการที่จะส่งการแจ้งเตือนให้คุณ", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json index dea0fb0e..5c3b1e02 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json @@ -234,48 +234,6 @@ ], "shouldAccept": true }, - { - "title": "App Store’a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "Game Center’a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "iTunes Store’a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "iMessage’a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "FaceTime’a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "iCloud’a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, { "title": "“%@”, sağlık verilerimi güncelleyebilsin.", "buttons": [ @@ -297,27 +255,6 @@ ], "shouldAccept": true }, - { - "title": "Şu anki Wi-Fi ağının ve yakınlardaki diğerlerinin bağlantısı yarına kadar kesilecektir.\n\nWi-Fi; AirDrop, Kişisel Erişim Noktası ve konum doğruluğu için kullanılmaya devam edecektir.", - "buttons": [ - "Tamam" - ], - "shouldAccept": true - }, - { - "title": "Şu anki WLAN ağının ve yakınlardaki diğerlerinin bağlantısı yarına kadar kesilecektir.\n\nWLAN; AirDrop, Kişisel Erişim Noktası ve konum doğruluğu için kullanılmaya devam edecektir.", - "buttons": [ - "Tamam" - ], - "shouldAccept": true - }, - { - "title": "Şu an için bağlı aksesuarların bağlantısı kesilecek ve diğer aksesuarlar bağlanmayacak.\n\nBluetooth; Apple Watch, Apple Pencil, Kişisel Erişim Noktası ve Handoff için kullanılmaya devam edecektir.", - "buttons": [ - "Tamam" - ], - "shouldAccept": true - }, { "title": "“%@” Arka Planda VoIP Araması Kabul Etmek İstiyor", "buttons": [ @@ -360,13 +297,6 @@ ], "shouldAccept": true }, - { - "title": "Apple Kimliğiyle Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, { "title": "“%@” son 3 gündür arka planda konumunuzu kullanıyor. Arka planda konumun kullanılmasına izin vermeyi sürdürmek istiyor musunuz?", "buttons": [ @@ -458,13 +388,6 @@ ], "shouldAccept": true }, - { - "title": "“%@” Öğesinin Aksesuarlara Bağlanmasına İzin Vermek için Bluetooth’u Açın", - "buttons": [ - "Tamam" - ], - "shouldAccept": true - }, { "title": "\"%@\" Size Bildirimler Göndermek İstiyor", "buttons": [ @@ -480,13 +403,6 @@ ], "shouldAccept": true }, - { - "title": "“%@” Öğesinin Aksesuarlara Bağlanmasına İzin Vermek için Bluetooth'u Açın", - "buttons": [ - "Tamam" - ], - "shouldAccept": true - }, { "title": "“%@” arkaplanda konumunuzu kullanıyor. Buna izin vermeyi sürdürmek istiyor musunuz?", "buttons": [ @@ -514,54 +430,5 @@ "Sonra" ], "shouldAccept": true - }, - { - "title": "“%@” Öğesinin Aksesuarlara Bağlanmasına İzin Vermek İçin Bluetooth'u Açın", - "buttons": [ - "Tamam" - ], - "shouldAccept": true - }, - { - "title": "App Store'a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "Game Center'a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "iTunes Store'a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "iMessage'a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "FaceTime'a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true - }, - { - "title": "iCloud'a Giriş Yapın", - "buttons": [ - "Vazgeç" - ], - "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json index 6434e11e..1aaf26ed 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json @@ -244,48 +244,6 @@ ], "shouldAccept": true }, - { - "title": "Увійдіть в App Store", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійдіть у Game Center", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійдіть в iTunes Store", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійдіть в iMessage", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійдіть у FaceTime", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійдіть в iCloud", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, { "title": "Дозвольте «%@» оновлювати ваші меддані.", "buttons": [ @@ -308,27 +266,6 @@ ], "shouldAccept": true }, - { - "title": "Поточну мережу Wi-Fi та інші поблизу буде відʼєднано до завтра.\n\nWi-Fi лишатиметься доступним для AirDrop, Власного хот-спота і точнішої геолокації.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Поточну мережу WLAN та інші поблизу буде відʼєднано до завтра.\n\nWLAN лишатиметься доступним для AirDrop, Власного хот-спота і точнішої геолокації.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Підʼєднані зараз прилади буде відʼєднано, а інші прилади не підʼєднуватимуться.\n\nBluetooth лишатиметься доступним для Apple Watch, Apple Pencil, Власного хот-спота і Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "«%@» хоче отримувати VoIP-виклики на другому плані", "buttons": [ @@ -380,13 +317,6 @@ ], "shouldAccept": true }, - { - "title": "Увійдіть з Apple ID", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, { "title": "«%@» використовувала вашу локацію у фоновому режимі в межах минулих 3 днів. Ви хочете далі дозволяти фонове використання локації?", "buttons": [ @@ -520,48 +450,6 @@ ], "shouldAccept": true }, - { - "title": "Увійти до App Store", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійти до Game Center", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійти до iTunes Store", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійти до iMessage", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійти до FaceTime", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, - { - "title": "Увійти до iCloud", - "buttons": [ - "Скасувати" - ], - "shouldAccept": true - }, { "title": "Доступ до «Здоров’я»", "buttons": [ @@ -576,13 +464,6 @@ ], "shouldAccept": true }, - { - "title": "Увімкніть Bluetooth, щоб дати «%@» змогу підключатися до приладів", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "«%@» хоче слати вам сповіщення", "buttons": [ @@ -598,13 +479,6 @@ ], "shouldAccept": true }, - { - "title": "Увімкніть Bluetooth, щоб дозволити «%@» підключитися до приладдя", - "buttons": [ - "ОК" - ], - "shouldAccept": true - }, { "title": "«%@» хоче отримати доступ до Apple Music", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json index a89671f0..21ef01bc 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json @@ -238,48 +238,6 @@ ], "shouldAccept": true }, - { - "title": "Đăng nhập vào App Store", - "buttons": [ - "Hủy" - ], - "shouldAccept": true - }, - { - "title": "Đăng nhập vào Game Center", - "buttons": [ - "Hủy" - ], - "shouldAccept": true - }, - { - "title": "Đăng nhập vào iTunes Store", - "buttons": [ - "Hủy" - ], - "shouldAccept": true - }, - { - "title": "Đăng nhập vào iMessage", - "buttons": [ - "Hủy" - ], - "shouldAccept": true - }, - { - "title": "Đăng nhập vào FaceTime", - "buttons": [ - "Hủy" - ], - "shouldAccept": true - }, - { - "title": "Đăng nhập vào iCloud", - "buttons": [ - "Hủy" - ], - "shouldAccept": true - }, { "title": "Cho phép “%@” cập nhật dữ liệu sức khỏe của bạn.", "buttons": [ @@ -301,27 +259,6 @@ ], "shouldAccept": true }, - { - "title": "Mạng Wi-Fi hiện tại và các mạng khác gần bạn sẽ bị ngắt kết nối cho đến ngày mai.\n\nWi-Fi sẽ tiếp tục khả dụng cho AirDrop, Điểm truy cập cá nhân và độ chính xác về vị trí.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Mạng WLAN hiện tại và các mạng khác gần bạn sẽ bị ngắt kết nối cho đến ngày mai.\n\nWLAN sẽ tiếp tục khả dụng cho AirDrop, Điểm truy cập cá nhân và độ chính xác về vị trí.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, - { - "title": "Các phụ kiện hiện đang được kết nối sẽ bị ngắt kết nối và các phụ kiện khác sẽ không kết nối.\n\nBluetooth sẽ tiếp tục khả dụng cho Apple Watch, Apple Pencil, Điểm truy cập cá nhân và Handoff.", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "“%@” muốn nhận cuộc gọi VoIP trong nền", "buttons": [ @@ -413,13 +350,6 @@ ], "shouldAccept": true }, - { - "title": "Đăng nhập bằng ID Apple", - "buttons": [ - "Hủy" - ], - "shouldAccept": true - }, { "title": "“%@” đã sử dụng vị trí của bạn trong nền trong 3 ngày qua. Bạn có muốn tiếp tục cho phép sử dụng vị trí trong nền không?", "buttons": [ @@ -511,13 +441,6 @@ ], "shouldAccept": true }, - { - "title": "Bật Bluetooth để Cho phép “%@” Kết nối với Phụ kiện", - "buttons": [ - "OK" - ], - "shouldAccept": true - }, { "title": "\"%@\" Muốn Gửi Thông báo cho Bạn", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json index e5c449f7..6fb8dfc4 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json @@ -227,48 +227,6 @@ ], "shouldAccept": true }, - { - "title": "登录 App Store", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录 Game Center", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录 iTunes Store", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录 iMessage 信息", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录 FaceTime 通话", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录 iCloud", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, { "title": "允许“%@”更新您的健康数据。", "buttons": [ @@ -290,13 +248,6 @@ ], "shouldAccept": true }, - { - "title": "当前 Wi-Fi 网络及附近其他网络会在明天之前保持断开状态。\n\nWi-Fi 仍可用于“隔空投送”、“个人热点”和定位准确性。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "当前无线局域网络及附近其他网络会在明天之前保持断开状态。\n\n无线局域网仍可用于“隔空投送”、“个人热点”和定位准确性。", "buttons": [ @@ -304,13 +255,6 @@ ], "shouldAccept": true }, - { - "title": "当前已连接的配件将断开连接,且其他配件不会连接。\n\n蓝牙仍可用于 Apple Watch、Apple Pencil、“个人热点”和“接力”。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "“%@”想在后台接收 VoIP 网络电话", "buttons": [ @@ -395,41 +339,6 @@ ], "shouldAccept": true }, - { - "title": "登录Game Center", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "通过Apple ID登录", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录iMessage信息", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录FaceTime通话", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录iCloud", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, { "title": "“%1$@”想访问%2$@帐户", "buttons": [ @@ -437,20 +346,6 @@ ], "shouldAccept": true }, - { - "title": "当前Wi-Fi网络及附近其他网络会在明天之前保持断开状态。\n\nWi-Fi仍可用于“隔空投送”、“个人热点”和定位准确性。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "当前已连接的配件将断开连接,且其他配件不会连接。\n\n蓝牙仍可用于Apple Watch、Apple Pencil、“个人热点”和“接力”。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "“%@”在过去3天中一直在后台使用您的位置。您要继续允许后台位置使用吗?", "buttons": [ @@ -528,20 +423,6 @@ ], "shouldAccept": true }, - { - "title": "登录 iMessage", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登录 FaceTime", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, { "title": "“%@”想要使用“%@”登录", "buttons": [ @@ -549,13 +430,6 @@ ], "shouldAccept": true }, - { - "title": "打开蓝牙来允许“%@”连接到配件", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "\"%@\"想给您发送通知", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 1c00848b..6ab156d1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -231,48 +231,6 @@ ], "shouldAccept": true }, - { - "title": "登入 App Store", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 Game Center", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 iTunes Store", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 iMessage", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 FaceTime", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 iCloud", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, { "title": "允許「%@」更新你的「健康」資料。", "buttons": [ @@ -294,27 +252,6 @@ ], "shouldAccept": true }, - { - "title": "將會中斷目前的 Wi-Fi 網絡和附近其他網直至明天為止。\n\nWi-Fi 仍可繼續用於 AirDrop、「個人熱點」和定位準確度。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "將會中斷目前的 WLAN 網絡和附近其他網直至明天為止。\n\nWLAN 仍可繼續用於 AirDrop、「個人熱點」和定位準確度。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "將中斷目前已連接的配件連線,並且不會連接其他配件。\n\nApple Watch、Apple Pencil、「個人熱點」和 Handoff 仍可繼續使用藍牙。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」要取用你的運動與健身記錄", "buttons": [ @@ -336,13 +273,6 @@ ], "shouldAccept": true }, - { - "title": "將中斷目前已連接的配件連線,並且不會連接其他配件。\n\nApple Watch、Apple Pencil、「個人熱點」和「接手」仍可繼續使用藍牙。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "允許「%@」取用你的位置嗎(即使你並非正在使用App時亦會取用)?", "buttons": [ @@ -434,34 +364,6 @@ ], "shouldAccept": true }, - { - "title": "使用Apple ID登入", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入iMessage", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入FaceTime", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入iCloud", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, { "title": "「%1$@」要連接%2$@帳户", "buttons": [ @@ -476,13 +378,6 @@ ], "shouldAccept": true }, - { - "title": "將會中斷目前的WLAN網絡和附近其他網絡直至明天為止。\n\nWLAN仍可繼續用於AirDrop、「個人熱點」和定位準確度。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」過去3日在背景使用了你的位置。要繼續允許在背景使用位置嗎?", "buttons": [ @@ -560,13 +455,6 @@ ], "shouldAccept": true }, - { - "title": "請開啟藍牙以允許「%@」連接配件", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」要傳送通知", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index 40bf9ce5..1178c8ca 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -230,48 +230,6 @@ ], "shouldAccept": true }, - { - "title": "登入 App Store", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 Game Center", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 iTunes Store", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 iMessage", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 FaceTime", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入 iCloud", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, { "title": "允許「%@」更新您的健康資料。", "buttons": [ @@ -293,27 +251,6 @@ ], "shouldAccept": true }, - { - "title": "將會中斷目前 Wi-Fi 和附近其他網路連線直到明天為止。\n\nWi-Fi 仍可用於 AirDrop、「個人熱點」和定位準確度。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "將會中斷目前 WLAN 和附近其他網路連線直到明天為止。\n\nWLAN 仍可用於 AirDrop、「個人熱點」和定位準確度。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, - { - "title": "將中斷目前已連接的配件連線,且不會連接其他配件。\n\nApple Watch、Apple Pencil、「個人熱點」和 Handoff 仍可使用藍牙。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」想要在背景接收 VoIP 通話", "buttons": [ @@ -328,13 +265,6 @@ ], "shouldAccept": true }, - { - "title": "將中斷目前已連接的配件連線,且不會連接其他配件。\n\nApple Watch、Apple Pencil、「個人熱點」和「接力」仍可使用藍牙。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "要允許「%@」在您未使用App時也可取用您的位置嗎?", "buttons": [ @@ -412,41 +342,6 @@ ], "shouldAccept": true }, - { - "title": "登入Game Center", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "使用Apple ID登入", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入iMessage", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入FaceTime", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, - { - "title": "登入iCloud", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, { "title": "「%1$@」要連接%2$@帳號", "buttons": [ @@ -461,13 +356,6 @@ ], "shouldAccept": true }, - { - "title": "將會中斷目前WLAN和附近其他網路連線直到明天為止。\n\nWLAN仍可用於AirDrop、「個人熱點」和定位準確度。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」在過去三天已在背景使用了您的位置。要繼續允許在背景使用位置嗎?", "buttons": [ @@ -546,13 +434,6 @@ ], "shouldAccept": true }, - { - "title": "開啟藍牙來允許「%@」連接配件", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」想要傳送通知", "buttons": [ From d29e5ba61351eff06d10c561a2235bf36f26f7fa Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 28 Oct 2019 14:23:38 +0300 Subject: [PATCH 15/33] Update frameworks json --- tools/springboard-alerts/frameworks.json | 25 ------------------------ 1 file changed, 25 deletions(-) diff --git a/tools/springboard-alerts/frameworks.json b/tools/springboard-alerts/frameworks.json index c158561b..eef7898f 100644 --- a/tools/springboard-alerts/frameworks.json +++ b/tools/springboard-alerts/frameworks.json @@ -91,23 +91,6 @@ { "title": "“%@” Wants to Use “%@” to Sign In", "button": "Continue" } ] }, - { - "name": "MobileBluetooth.framework", - "values": [ - { "title": "LE_POWER_OFF_HEADER", "button": "OK"} - ] - }, - { - "name": "AuthKit.framework", - "values": [ - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_APP_STORE", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_GAME_CENTER", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_ITUNES", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_IMESSAGE", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_FACETIME", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_ICLOUD", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" } - ] - }, { "name": "UserNotificationsServer.framework", "values": [ @@ -128,14 +111,6 @@ { "title": "ACCOUNT_ACCESS_MESSAGE", "button": "OK"} ] }, - { - "name": "ConnectivityModule.bundle", - "values": [ - { "title": "CONTROL_CENTER_WIFI_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK" }, - { "title": "CONTROL_CENTER_WLAN_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK" }, - { "title": "CONTROL_CENTER_BLUETOOTH_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK" } - ] - }, { "name": "UIKitCore.framework", "values": [ From 8f957c6fd07d1ad01ad180367ca911313ed3f5f0 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 28 Oct 2019 15:18:21 +0300 Subject: [PATCH 16/33] Fix SpringBoardAlertsCurrentLanguageTests --- .../Utilities/SpringBoardAlertsCurrentLanguageTests.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TestApp/DeviceAgentUnitTests/Utilities/SpringBoardAlertsCurrentLanguageTests.m b/TestApp/DeviceAgentUnitTests/Utilities/SpringBoardAlertsCurrentLanguageTests.m index c8c643c3..e04241d3 100644 --- a/TestApp/DeviceAgentUnitTests/Utilities/SpringBoardAlertsCurrentLanguageTests.m +++ b/TestApp/DeviceAgentUnitTests/Utilities/SpringBoardAlertsCurrentLanguageTests.m @@ -103,7 +103,7 @@ - (void)testCurrentLanguagezh_HK { OCMStub([localeMock preferredLanguages]).andReturn(array); SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; - expect([self containsLanguage:@"「%@」的部分資料將傳送予 Apple 以處理你的要求。":alertsArray]).to.beTruthy(); + expect([self containsLanguage:@"「%@」要取用你的提醒事項":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"“%@” would like to make data available to nearby Bluetooth devices even when you’re not using the app.":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"Программа «%@» запрашивает доступ к «Напоминаниям».":alertsArray]).to.beFalsy(); @@ -116,7 +116,7 @@ - (void)testCurrentLanguagezh_Hant_HK { OCMStub([localeMock preferredLanguages]).andReturn(array); SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; - expect([self containsLanguage:@"「%@」的部分資料將傳送予 Apple 以處理你的要求。":alertsArray]).to.beTruthy(); + expect([self containsLanguage:@"「%@」要取用你的提醒事項":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"“%@” would like to make data available to nearby Bluetooth devices even when you’re not using the app.":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"Программа «%@» запрашивает доступ к «Напоминаниям».":alertsArray]).to.beFalsy(); From dbc37d21dea6027fc7b0a2ad376484416eaafbda Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 28 Oct 2019 17:13:23 +0300 Subject: [PATCH 17/33] default value --- tools/springboard-alerts/frameworks.json | 126 +++++++++--------- .../localization_storage.rb | 8 +- tools/springboard-alerts/update-alerts.rb | 5 +- 3 files changed, 71 insertions(+), 68 deletions(-) diff --git a/tools/springboard-alerts/frameworks.json b/tools/springboard-alerts/frameworks.json index c158561b..8980f4d6 100644 --- a/tools/springboard-alerts/frameworks.json +++ b/tools/springboard-alerts/frameworks.json @@ -2,144 +2,144 @@ { "name": "CoreLocation.framework", "values": [ - { "title": "LOCATION_CLIENT_PERMISSION", "button": "LOCATION_CLIENT_PERMISSION_KEEP_ALWAYS_BUTTON" }, - { "title": "LOCATION_CLIENT_PERMISSION", "button": "LOCATION_CLIENT_PERMISSION_OK" }, - { "title": "LOCATION_CLIENT_PERMISSION_ALWAYS", "button": "LOCATION_CLIENT_PERMISSION_OK" }, - { "title": "LOCATION_CLIENT_PERMISSION_WHENINUSE", "button": "LOCATION_CLIENT_PERMISSION_KEEP_ALWAYS_BUTTON" }, - { "title": "LOCATION_CLIENT_PERMISSION_WHENINUSE", "button": "LOCATION_CLIENT_PERMISSION_OK" }, - { "title": "LOCATION_CLIENT_PERMISSION_UPGRADE_WHENINUSE_ALWAYS", "button": "LOCATION_CLIENT_PERMISSION_OK" }, - { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT", "button": "LOCATION_CLIENT_PERMISSION_OK" }, - { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT_ZERO", "button": "LOCATION_CLIENT_PERMISSION_OK" }, - { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT_ONE", "button": "LOCATION_CLIENT_PERMISSION_OK" } + { "title": "LOCATION_CLIENT_PERMISSION", "button": "LOCATION_CLIENT_PERMISSION_KEEP_ALWAYS_BUTTON", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION_ALWAYS", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION_WHENINUSE", "button": "LOCATION_CLIENT_PERMISSION_KEEP_ALWAYS_BUTTON", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION_WHENINUSE", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION_UPGRADE_WHENINUSE_ALWAYS", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT_ZERO", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT_ONE", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true } ] }, { "name": "Maps.app", "values": [ - { "title": "Allow '%@' to access your location while you use the app?", "button": "Allow" }, - { "title": "Allow '%@' to access your location while you are using the app?", "button": "Allow" } + { "title": "Allow '%@' to access your location while you use the app?", "button": "Allow", "default_value": true }, + { "title": "Allow '%@' to access your location while you are using the app?", "button": "Allow", "default_value": true } ] }, { "name": "TCC.framework", "values": [ - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceFaceID", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMicrophone", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServicePhotosAdd", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCalendar", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMotion", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCamera", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceReminders", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceSiri", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMediaLibrary", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceAddressBook", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceContactsLimited", "button": "REQUEST_ACCESS_ALLOW"}, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceContactsFull", "button": "REQUEST_ACCESS_ALLOW"}, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServicePhotos", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceWillow", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCalls", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceBluetoothPeripheral", "button": "REQUEST_ACCESS_ALLOW" }, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceBluetoothWhileInUse", "button": "REQUEST_ACCESS_ALLOW"}, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceBluetoothAlways", "button": "REQUEST_ACCESS_ALLOW"}, - { "title": "REQUEST_DEFAULT_PURPOSE_STRING_SERVICE_kTCCServiceBluetoothAlways", "button": "REQUEST_ACCESS_ALLOW"}, - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceSpeechRecognition", "button": "REQUEST_ACCESS_ALLOW" } + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceFaceID", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMicrophone", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServicePhotosAdd", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCalendar", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMotion", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCamera", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceReminders", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceSiri", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMediaLibrary", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceAddressBook", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceContactsLimited", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceContactsFull", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServicePhotos", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceWillow", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCalls", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceBluetoothPeripheral", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceBluetoothWhileInUse", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceBluetoothAlways", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_DEFAULT_PURPOSE_STRING_SERVICE_kTCCServiceBluetoothAlways", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceSpeechRecognition", "button": "REQUEST_ACCESS_ALLOW", "default_value": true } ] }, { "name": "CoreTelephony.framework", "values": [ - { "title": "CBMessageBody", "button": "CBMessageDeclineButton" }, - { "title": "CBMessageTitle", "button": "CBMessageDeclineButton"}, - { "title": "NO_SIM_CARD_INSTALLED", "button": "OK" } + { "title": "CBMessageBody", "button": "CBMessageDeclineButton", "default_value": true }, + { "title": "CBMessageTitle", "button": "CBMessageDeclineButton", "default_value": true }, + { "title": "NO_SIM_CARD_INSTALLED", "button": "OK", "default_value": true } ] }, { "name": "NetworkExtension.framework", "values": [ - { "title": "APP_WARNING_HEADER_VPN", "button": "ALLOW_BUTTON" }, - { "title": "APP_WARNING_HEADER_FILTER", "button": "ALLOW_BUTTON" }, - { "title": "APP_WARNING_HEADER_DNS_PROXY", "button": "ALLOW_BUTTON" } + { "title": "APP_WARNING_HEADER_VPN", "button": "ALLOW_BUTTON", "default_value": true }, + { "title": "APP_WARNING_HEADER_FILTER", "button": "ALLOW_BUTTON", "default_value": true }, + { "title": "APP_WARNING_HEADER_DNS_PROXY", "button": "ALLOW_BUTTON", "default_value": true } ] }, { "name": "SpringBoard.app", "values": [ - { "title": "ACTIVATION_FAILED_TITLE", "button": "ACTIVATION_FAILED_IGNORE_BUTTON" } + { "title": "ACTIVATION_FAILED_TITLE", "button": "ACTIVATION_FAILED_IGNORE_BUTTON", "default_value": true } ] }, { "name": "TextInput.framework", "values": [ - { "title": "DICTATION_OPT_IN_TITLE", "button": "DICTATION_OPT_IN_NOT_NOW" }, - { "title": "DICTATION_OPT_IN_ENABLE", "button": "DICTATION_OPT_IN_NOT_NOW" }, - { "title": "EXTENSION_OPT_IN_TITLE", "button": "DICTATION_OPT_IN_NOT_NOW" } + { "title": "DICTATION_OPT_IN_TITLE", "button": "DICTATION_OPT_IN_NOT_NOW", "default_value": true }, + { "title": "DICTATION_OPT_IN_ENABLE", "button": "DICTATION_OPT_IN_NOT_NOW", "default_value": true }, + { "title": "EXTENSION_OPT_IN_TITLE", "button": "DICTATION_OPT_IN_NOT_NOW", "default_value": true } ] }, { "name": "MobileSafari.app", "values": [ - { "title": "Open in “%@”", "button": "Open" }, - { "title": "Open in “%@”?", "button": "Open" }, - { "title": "Search %@ (Quick Website Search)", "button": "Open" }, - { "title": "Open this page in “%@”?", "button": "Open" }, - { "title": "Open in the %@ app", "button": "Open" } + { "title": "Open in “%@”", "button": "Open", "default_value": true }, + { "title": "Open in “%@”?", "button": "Open", "default_value": true }, + { "title": "Search %@ (Quick Website Search)", "button": "Open", "default_value": true }, + { "title": "Open this page in “%@”?", "button": "Open", "default_value": true }, + { "title": "Open in the %@ app", "button": "Open", "default_value": true } ] }, { "name": "SafariServices.framework", "values": [ - { "title": "“%@” Wants to Use “%@” to Sign In", "button": "Continue" } + { "title": "“%@” Wants to Use “%@” to Sign In", "button": "Continue", "default_value": true } ] }, { "name": "MobileBluetooth.framework", "values": [ - { "title": "LE_POWER_OFF_HEADER", "button": "OK"} + { "title": "LE_POWER_OFF_HEADER", "button": "OK", "default_value": true } ] }, { "name": "AuthKit.framework", "values": [ - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_APP_STORE", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_GAME_CENTER", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_ITUNES", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_IMESSAGE", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_FACETIME", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" }, - { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_ICLOUD", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON" } + { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_APP_STORE", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON", "default_value": false }, + { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_GAME_CENTER", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON", "default_value": false }, + { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_ITUNES", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON", "default_value": false }, + { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_IMESSAGE", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON", "default_value": false }, + { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_FACETIME", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON", "default_value": false }, + { "title": "INLINE_PASSWORD_ALERT_TITLE_SERVICE_ICLOUD", "button": "INLINE_PASSWORD_ALERT_CANCEL_BUTTON", "default_value": false } ] }, { "name": "UserNotificationsServer.framework", "values": [ - { "title": "CRITICAL_ALERT_PERMISSION_ALERT_TITLE", "button": "PERMISSION_ALERT_ALLOW" }, - { "title": "USER_NOTIFICATION_PERMISSION_ALERT_TITLE", "button": "PERMISSION_ALERT_ALLOW" } + { "title": "CRITICAL_ALERT_PERMISSION_ALERT_TITLE", "button": "PERMISSION_ALERT_ALLOW", "default_value": true }, + { "title": "USER_NOTIFICATION_PERMISSION_ALERT_TITLE", "button": "PERMISSION_ALERT_ALLOW", "default_value": true } ] }, { "name": "HealthUI.framework", "values": [ - { "title": "ALLOW_DEVICE_DATA_UPDATES", "button": "OD_ALERT_OK"}, - { "title": "AUTHORIZATION_DONT_ALLOW_ALERT_TITLE", "button": "OD_ALERT_OK"} + { "title": "ALLOW_DEVICE_DATA_UPDATES", "button": "OD_ALERT_OK", "default_value": true }, + { "title": "AUTHORIZATION_DONT_ALLOW_ALERT_TITLE", "button": "OD_ALERT_OK", "default_value": true } ] }, { "name": "Accounts.framework", "values": [ - { "title": "ACCOUNT_ACCESS_MESSAGE", "button": "OK"} + { "title": "ACCOUNT_ACCESS_MESSAGE", "button": "OK", "default_value": true } ] }, { "name": "ConnectivityModule.bundle", "values": [ - { "title": "CONTROL_CENTER_WIFI_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK" }, - { "title": "CONTROL_CENTER_WLAN_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK" }, - { "title": "CONTROL_CENTER_BLUETOOTH_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK" } + { "title": "CONTROL_CENTER_WIFI_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK", "default_value": true }, + { "title": "CONTROL_CENTER_WLAN_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK", "default_value": true }, + { "title": "CONTROL_CENTER_BLUETOOTH_BEHAVIOR_ALERT_MESSAGE", "button": "CONTROL_CENTER_ALERT_OK", "default_value": true } ] }, { "name": "UIKitCore.framework", "values": [ - { "title": "“%@” Would Like To Use Your Current Location", "button": "OK" } + { "title": "“%@” Would Like To Use Your Current Location", "button": "OK", "default_value": true } ] } ] \ No newline at end of file diff --git a/tools/springboard-alerts/localization_storage.rb b/tools/springboard-alerts/localization_storage.rb index 2dfc7c2c..216889a8 100644 --- a/tools/springboard-alerts/localization_storage.rb +++ b/tools/springboard-alerts/localization_storage.rb @@ -9,10 +9,10 @@ def initialize(storage_path) end # Adds new alert with specific language and title to the database - def add_entry(language, title, button) + def add_entry(language, title, button, default_value) @storage[language] ||= [] - alert_entry = add_alert(language, title) + alert_entry = add_alert(language, title, default_value) add_button_to_alert(alert_entry, button) if button end @@ -27,14 +27,14 @@ def save private # Adds new alert if it doesn't exist yet - def add_alert(language, title) + def add_alert(language, title, default_value) alert_entry = @storage[language].find { |item| item['title'] == title } return alert_entry if alert_entry alert_entry = { 'title' => title, 'buttons' => [], - 'shouldAccept' => true + 'shouldAccept' => default_value } @storage[language].push(alert_entry) alert_entry diff --git a/tools/springboard-alerts/update-alerts.rb b/tools/springboard-alerts/update-alerts.rb index 9fdb5c38..f423328d 100644 --- a/tools/springboard-alerts/update-alerts.rb +++ b/tools/springboard-alerts/update-alerts.rb @@ -76,6 +76,9 @@ def pick_required_values(found_values_dict, target_values, localization_storage, target_values.each do |item| title = item['title'] button = item['button'] + default_value = item['default_value'] + default_value = true if default_value.nil? + title_value = found_values_dict[title] button_value = found_values_dict[button] @@ -84,7 +87,7 @@ def pick_required_values(found_values_dict, target_values, localization_storage, end if title_value - localization_storage.add_entry(language, title_value, button_value) + localization_storage.add_entry(language, title_value, button_value, default_value) else unknown_alert_constants.push(title) end From 50a47a74830bca54a434a28a01a38cc54adedc8d Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 28 Oct 2019 17:20:10 +0300 Subject: [PATCH 18/33] Remove missed alerts --- .../springboard-alerts-sk.dataset/alerts.json | 14 -------------- .../springboard-alerts-zh_CN.dataset/alerts.json | 7 ------- .../springboard-alerts-zh_HK.dataset/alerts.json | 14 -------------- .../springboard-alerts-zh_TW.dataset/alerts.json | 7 ------- 4 files changed, 42 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json index bb0f72bf..ba259bfb 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json @@ -234,20 +234,6 @@ ], "shouldAccept": true }, - { - "title": "Prihláste sa do App Storu", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, - { - "title": "Prihláste sa do iTunes Storu", - "buttons": [ - "Zrušiť" - ], - "shouldAccept": true - }, { "title": "Povoliť aplikácii „%@“ aktualizovať vaše zdravotné dáta.", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json index 6fb8dfc4..926ace40 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json @@ -248,13 +248,6 @@ ], "shouldAccept": true }, - { - "title": "当前无线局域网络及附近其他网络会在明天之前保持断开状态。\n\n无线局域网仍可用于“隔空投送”、“个人热点”和定位准确性。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "“%@”想在后台接收 VoIP 网络电话", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 6ab156d1..c8dd5290 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -357,13 +357,6 @@ ], "shouldAccept": true }, - { - "title": "登入Game Center", - "buttons": [ - "取消" - ], - "shouldAccept": true - }, { "title": "「%1$@」要連接%2$@帳户", "buttons": [ @@ -371,13 +364,6 @@ ], "shouldAccept": true }, - { - "title": "將會中斷目前的Wi-Fi網絡和附近其他網絡直至明天為止。\n\nWi-Fi仍可繼續用於AirDrop、「個人熱點」和定位準確度。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」過去3日在背景使用了你的位置。要繼續允許在背景使用位置嗎?", "buttons": [ diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index 1178c8ca..f5c6b684 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -349,13 +349,6 @@ ], "shouldAccept": true }, - { - "title": "將會中斷目前Wi-Fi和附近其他網路連線直到明天為止。\n\nWi-Fi仍可用於AirDrop、「個人熱點」和定位準確度。", - "buttons": [ - "好" - ], - "shouldAccept": true - }, { "title": "「%@」在過去三天已在背景使用了您的位置。要繼續允許在背景使用位置嗎?", "buttons": [ From 7ab6fa6e258d2b1c249d1e072333acde7afa6766 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 28 Oct 2019 22:44:05 +0300 Subject: [PATCH 19/33] Fix SpringBoardAlertsCurrentLanguageTests --- .../Utilities/SpringBoardAlertsCurrentLanguageTests.m | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/TestApp/DeviceAgentUnitTests/Utilities/SpringBoardAlertsCurrentLanguageTests.m b/TestApp/DeviceAgentUnitTests/Utilities/SpringBoardAlertsCurrentLanguageTests.m index c8c643c3..89147b80 100644 --- a/TestApp/DeviceAgentUnitTests/Utilities/SpringBoardAlertsCurrentLanguageTests.m +++ b/TestApp/DeviceAgentUnitTests/Utilities/SpringBoardAlertsCurrentLanguageTests.m @@ -169,7 +169,7 @@ - (void)testCurrentLanguageRu { SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; expect([self containsLanguage:@"Программа «%@» запрашивает доступ к «Контактам».": alertsArray]).to.beTruthy(); - expect([self containsLanguage:@"Sign In to iTunes Store":alertsArray]).to.beTruthy(); + expect([self containsLanguage:@"Add Third-Party Keyboard?":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"« %@ » souhaite accéder à vos mouvements et vos activités physiques.":alertsArray]).to.beFalsy(); [localeMock stopMocking]; @@ -182,7 +182,7 @@ - (void)testCurrentLanguageUnExisting { SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; expect([self containsLanguage:@"Программа «%@» запрашивает доступ к «Контактам».": alertsArray]).to.beFalsy(); - expect([self containsLanguage:@"Sign In to iTunes Store":alertsArray]).to.beTruthy(); + expect([self containsLanguage:@"Add Third-Party Keyboard?":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"« %@ » souhaite accéder à vos mouvements et vos activités physiques.":alertsArray]).to.beFalsy(); [localeMock stopMocking]; @@ -195,7 +195,7 @@ - (void)testCurrentLanguageEs { SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; expect([self containsLanguage:@"“%@” quiere acceder al reconocimiento de voz": alertsArray]).to.beTruthy(); - expect([self containsLanguage:@"Sign In to iTunes Store":alertsArray]).to.beTruthy(); + expect([self containsLanguage:@"Add Third-Party Keyboard?":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"acceda a tu ubicación incluso cuando la app no está en uso":alertsArray]).to.beFalsy(); [localeMock stopMocking]; @@ -208,7 +208,7 @@ - (void)testCurrentLanguageEs_419 { SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; expect([self containsLanguage:@"“%@” quiere acceder a tu condición y actividad física": alertsArray]).to.beTruthy(); - expect([self containsLanguage:@"Sign In to iTunes Store":alertsArray]).to.beTruthy(); + expect([self containsLanguage:@"Add Third-Party Keyboard?":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"“%@” quiere acceder al reconocimiento de voz":alertsArray]).to.beTruthy(); [localeMock stopMocking]; @@ -221,7 +221,7 @@ - (void)testCurrentLanguageHe { SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; expect([self containsLanguage:@"״%@״ מעוניין לגשת למשימות שלך": alertsArray]).to.beTruthy(); - expect([self containsLanguage:@"Sign In to iTunes Store":alertsArray]).to.beTruthy(); + expect([self containsLanguage:@"Add Third-Party Keyboard?":alertsArray]).to.beTruthy(); expect([self containsLanguage:@"« %@ » souhaite accéder à vos mouvements et vos activités physiques.":alertsArray]).to.beFalsy(); [localeMock stopMocking]; From e0df6f7856c09fd6d480876af173f18dd2a4cd7f Mon Sep 17 00:00:00 2001 From: Vladimir Date: Tue, 29 Oct 2019 11:17:36 +0300 Subject: [PATCH 20/33] Change acceptance rules for alerts --- .../springboard-alerts-ar.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-ca.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-cs.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-da.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-de.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-el.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-en.dataset/alerts.json | 18 +++++++------- .../alerts.json | 18 +++++++------- .../alerts.json | 18 +++++++------- .../springboard-alerts-es.dataset/alerts.json | 18 +++++++------- .../alerts.json | 18 +++++++------- .../springboard-alerts-fi.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-fr.dataset/alerts.json | 18 +++++++------- .../alerts.json | 18 +++++++------- .../springboard-alerts-he.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-hi.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-hr.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-hu.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-id.dataset/alerts.json | 19 +++++++-------- .../springboard-alerts-it.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-ja.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-ko.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-ms.dataset/alerts.json | 21 ++++++++-------- .../springboard-alerts-nl.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-no.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-pl.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-pt.dataset/alerts.json | 18 +++++++------- .../alerts.json | 18 +++++++------- .../springboard-alerts-ro.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-ru.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-sk.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-sv.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-th.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-tr.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-uk.dataset/alerts.json | 18 +++++++------- .../springboard-alerts-vi.dataset/alerts.json | 19 +++++++-------- .../alerts.json | 4 ++-- .../alerts.json | 18 +++++++------- .../alerts.json | 24 +++++++++---------- .../alerts.json | 24 +++++++++---------- tools/springboard-alerts/frameworks.json | 12 +++++----- 41 files changed, 364 insertions(+), 371 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json index f3e70f28..4bcc3fec 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "هل ترغب بالسماح لـ \"%@\" باستخدام Face ID؟", "buttons": [ - "موافق" + "عدم السماح" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "يرغب \"%@\" بالوصول إلى الميكروفون", @@ -155,28 +155,28 @@ "buttons": [ "ليس الآن" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "يرغب \"%@\" في إضافة تكوينات VPN", "buttons": [ - "السماح" + "عدم السماح" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "يرغب \"%@\" في تصفية محتوى الشبكة", "buttons": [ - "السماح" + "عدم السماح" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "لم يتم تنشيط الـ iPhone", "buttons": [ "تجاهل" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "تمكين الإملاء؟", @@ -358,7 +358,7 @@ "buttons": [ "ليس الآن" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "يرغب “%@” في استخدام “%@” لتسجيل الدخول", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json index 557c33f5..a7a80869 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json @@ -42,9 +42,9 @@ { "title": "Vols permetre que “%@” utilitzi el Face ID?", "buttons": [ - "OK" + "No permetre" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” vol accedir al micròfon", @@ -156,28 +156,28 @@ "buttons": [ "Ara no" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” vol afegir configuracions de VPN", "buttons": [ - "Permetre" + "No permetre" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” vol filtrar el contingut de la xarxa", "buttons": [ - "Permetre" + "No permetre" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "L’iPhone no s’ha activat", "buttons": [ "Ignorar" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Activar el dictat?", @@ -387,7 +387,7 @@ "buttons": [ "Ara no" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Obrir-ho a l’aplicació %@", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json index 27a637ac..9c4ea5e4 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json @@ -33,9 +33,9 @@ { "title": "Chcete aplikaci %@ povolit používání Face ID?", "buttons": [ - "OK" + "Nepovolovat" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aplikace „%@“ žádá o přístup k mikrofonu", @@ -147,28 +147,28 @@ "buttons": [ "Teď ne" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@“ chce přidat konfigurace VPN", "buttons": [ - "Povolit" + "Zakázat" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@“ chce filtrovat obsah ze sítě", "buttons": [ - "Povolit" + "Zakázat" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone není aktivovaný", "buttons": [ "Ignorovat" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Zapnout diktování?", @@ -380,7 +380,7 @@ "buttons": [ "Teď ne" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@“ chce použít k přihlášení „%@“", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json index 78691ef1..0e4ff6ef 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Vil du give “%@” tilladelse til at bruge Face ID?", "buttons": [ - "OK" + "Tillad ikke" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” vil bruge mikrofonen", @@ -148,35 +148,35 @@ "buttons": [ "Ikke nu" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Opdatering af operatørindstillinger", "buttons": [ "Ikke nu" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” vil gerne tilføje VPN-konfigurationer", "buttons": [ - "Tillad" + "Tillad ikke" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” vil bruge filter til netværksindhold", "buttons": [ - "Tillad" + "Tillad ikke" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone er ikke aktiveret", "buttons": [ "Ignorer" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Slå Diktering til?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json index 324243ab..ffa7211c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Darf „%@“ Face ID verwenden?", "buttons": [ - "OK" + "Nicht erlauben" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@“ möchte auf das Mikrofon zugreifen", @@ -148,35 +148,35 @@ "buttons": [ "Später" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Update der Netzbetreiber-Einstellungen", "buttons": [ "Später" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@“ möchte VPN-Konfigurationen hinzufügen", "buttons": [ - "Erlauben" + "Nicht erlauben" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Darf „%@“ Netzwerkinhalte filtern?", "buttons": [ - "Erlauben" + "Nicht erlauben" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone ist nicht aktiviert", "buttons": [ "Ignorieren" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Diktierfunktion aktivieren?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json index 0bdb40de..86e7e415 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Θέλετε να επιτραπεί στην εφαρμογή «%@» η χρήση του Face ID;", "buttons": [ - "OK" + "Άρνηση" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Αίτημα από «%@» για πρόσβαση στο Μικρόφωνο", @@ -148,35 +148,35 @@ "buttons": [ "Όχι τώρα" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Ενημέρωση ρυθμίσεων φορέα", "buttons": [ "Όχι τώρα" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Αίτημα από «%@» για προσθήκη διαμορφώσεων VPN", "buttons": [ - "Να επιτρέπεται" + "Να μην επιτρέπεται" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Αίτημα από «%@» για φιλτράρισμα περιεχομένου δικτύου", "buttons": [ - "Να επιτρέπεται" + "Να μην επιτρέπεται" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Το iPhone δεν είναι ενεργοποιημένο", "buttons": [ "Αγνόηση" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Ενεργοποίηση Υπαγόρευσης;", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json index 92e45578..985fabd2 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Do you want to allow “%@” to use Face ID?", "buttons": [ - "OK" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Access the Microphone", @@ -148,28 +148,28 @@ "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Carrier Settings Update", "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Add VPN Configurations", "buttons": [ - "Allow" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Filter Network Content", "buttons": [ - "Allow" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone is not Activated", @@ -177,7 +177,7 @@ "Ignore", "Dismiss" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Enable Dictation?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json index de83fd96..909759d7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Do you want to allow “%@” to use Face ID?", "buttons": [ - "OK" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Access the Microphone", @@ -160,16 +160,16 @@ { "title": "“%@” Would Like to Add VPN Configurations", "buttons": [ - "Allow" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Filter Network Content", "buttons": [ - "Allow" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone is not Activated", @@ -177,7 +177,7 @@ "Ignore", "Dismiss" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Enable Dictation?", @@ -359,14 +359,14 @@ "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Carrier Settings Update", "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Wants to Use “%@” to Sign In", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json index cb9cc74d..a479e4a1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Do you want to allow “%@” to use Face ID?", "buttons": [ - "OK" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Access the Microphone", @@ -155,21 +155,21 @@ "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Add VPN Configurations", "buttons": [ - "Allow" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Filter Network Content", "buttons": [ - "Allow" + "Don’t Allow" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone is not Activated", @@ -177,7 +177,7 @@ "Ignore", "Dismiss" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Enable Dictation?", @@ -366,7 +366,7 @@ "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Wants to Use “%@” to Sign In", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json index 0c682bc6..8b7f139f 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "¿Quieres permitir que “%@” utilice Face ID?", "buttons": [ - "Permitir" + "No permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” quiere acceder al micrófono", @@ -155,35 +155,35 @@ "buttons": [ "Ahora no" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Actualización de ajustes de operador", "buttons": [ "Ahora no" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” quiere añadir configuraciones de VPN", "buttons": [ - "Permitir" + "No permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” quiere filtrar el contenido de la red", "buttons": [ - "Permitir" + "No permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "El iPhone no está activado", "buttons": [ "Ignorar" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "¿Activar Dictado?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json index 57c74c72..406e25c7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "¿Quieres permitir que “%@” use Face ID?", "buttons": [ - "OK" + "No permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” quiere acceder al micrófono", @@ -148,35 +148,35 @@ "buttons": [ "Ahora no" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Actualización de configuración de operador", "buttons": [ "Ahora no" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” quiere agregar configuraciones de VPN", "buttons": [ - "Permitir" + "No permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” quiere filtrar contenido de redes", "buttons": [ - "Permitir" + "No permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "El iPhone no está activado", "buttons": [ "Ignorar" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "¿Activar dictado?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json index 6a2f4f9c..b4dfa0ab 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json @@ -34,9 +34,9 @@ { "title": "Saako %@ käyttää Face ID:tä?", "buttons": [ - "OK" + "Älä salli" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "%@ haluaa käyttää mikrofonia", @@ -141,35 +141,35 @@ "buttons": [ "Ei nyt" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Operaattoriasetusten päivitys", "buttons": [ "Ei nyt" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "%@ haluaa lisätä VPN-määrityksiä", "buttons": [ - "Salli" + "Älä salli" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "”%@” haluaa suodattaa verkkosisältöä", "buttons": [ - "Salli" + "Älä salli" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhonea ei ole aktivoitu", "buttons": [ "Älä huomioi" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Otetaanko sanelu käyttöön?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json index a9a612d8..c5cc8024 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Voulez-vous autoriser « %@ » à utiliser Face ID ?", "buttons": [ - "OK" + "Refuser" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "« %@ » souhaite accéder au micro.", @@ -148,35 +148,35 @@ "buttons": [ "Plus tard" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Mise à jour des réglages de l’opérateur", "buttons": [ "Plus tard" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "« %@ » aimerait ajouter des configurations VPN", "buttons": [ - "Autoriser" + "Refuser" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "« %@ » aimerait filtrer le contenu du réseau", "buttons": [ - "Autoriser" + "Refuser" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "L’iPhone n’est pas activé.", "buttons": [ "Ignorer" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Activer Dictée ?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json index a54cc317..b3e98592 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Souhaitez-vous autoriser « %@ » à utiliser Face ID?", "buttons": [ - "OK" + "Refuser" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "« %@ » souhaite accéder au micro.", @@ -148,35 +148,35 @@ "buttons": [ "Plus tard" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Mise à jour des réglages de l’opérateur", "buttons": [ "Plus tard" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "« %@ » souhaite ajouter des configurations VPN", "buttons": [ - "Autoriser" + "Refuser" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "« %@ » souhaite filtrer les contenus réseau", "buttons": [ - "Autoriser" + "Refuser" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "L’iPhone n’est pas activé.", "buttons": [ "Ignorer" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Activer Dictée?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json index 96160d3d..e484c621 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "לאפשר ל-״%@״ להשתמש ב-Face ID?", "buttons": [ - "אישור" + "אל תאפשר" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "״%@״ מעוניין להשתמש במיקרופון", @@ -155,28 +155,28 @@ "buttons": [ "לא כעת" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "״%@״ מעוניין להוסיף תצורות VPN", "buttons": [ - "אפשר" + "אל תאפשר" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‏״%@״ מעוניין לסנן תוכן המתקבל מהרשת", "buttons": [ - "אפשר" + "אל תאפשר" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‏iPhone זה טרם הופעל", "buttons": [ "התעלם/י" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "להפעיל את ״הכתבה״?", @@ -370,7 +370,7 @@ "buttons": [ "לא כעת" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‏״%@״ מבקש להשתמש ב-״%@״ כדי להתחבר", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index 32745c9e..c783d76e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -40,9 +40,9 @@ { "title": "क्या आप “%@” को Face ID का उपयोग करने की अनुमति देना चाहते हैं?", "buttons": [ - "ठीक" + "अनुमति न दें" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” माइक्रोफ़ोन तक पहुँचना चाहता है", @@ -154,28 +154,28 @@ "buttons": [ "अभी नहीं" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” की इच्छा VPN कॉन्फ़िगरेशन जोड़ने की है", "buttons": [ - "अनुमति दें" + "अनुमति न दें" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” नेटवर्क कॉन्टेंट को फ़िल्टर करना चाहता है", "buttons": [ - "अनुमति दें" + "अनुमति न दें" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone सक्रिय नहीं है", "buttons": [ "नज़रअंदाज़ करें" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "श्रुतलेखन सक्षम करें?", @@ -506,7 +506,7 @@ "buttons": [ "अभी नहीं" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "साइन इन करने के लिए “%@” “%@” का उपयोग करना चाहता है", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json index b0df27a9..1962e3fa 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json @@ -40,9 +40,9 @@ { "title": "Želite li dozvoliti usluzi “%@” uporabu Face ID-a?", "buttons": [ - "OK" + "Nemoj dozvoliti" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” želi pristupiti mikrofonu", @@ -154,28 +154,28 @@ "buttons": [ "Ne sad" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” želi dodati VPN konfiguracije", "buttons": [ - "Dozvoli" + "Nemoj dozvoliti" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” želi filtrirati mrežne sadržaje", "buttons": [ - "Dozvoli" + "Nemoj dozvoliti" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone nije aktiviran", "buttons": [ "Ignoriraj" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Omogućiti Diktat?", @@ -373,7 +373,7 @@ "buttons": [ "Ne sad" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@“ želi upotrijebiti “%@“ za prijavu", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json index b0cf7fb1..4ce1c83d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json @@ -34,9 +34,9 @@ { "title": "Szeretné engedélyezni a(z) „%@” számára a Face ID használatát?", "buttons": [ - "OK" + "Tiltás" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "A(z) „%@” hozzá szeretne férni az Ön mikrofonjához.", @@ -148,7 +148,7 @@ "buttons": [ "Ne most" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@” VPN-konfigurációt szeretne hozzáadni", @@ -160,9 +160,9 @@ { "title": "A(z) „%@” szűrni akarja a hálózati tartalmat", "buttons": [ - "Engedélyezés" + "Tiltás" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Az iPhone nincs aktiválva.", @@ -351,21 +351,21 @@ "buttons": [ "Ne most" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@” VPN-konfigurációt kíván hozzáadni", "buttons": [ - "Engedélyezés" + "Tiltás" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Az iPhone készülék nincs aktiválva.", "buttons": [ "Kihagyás" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "A(z) „%1$@” meg kívánja nyitni a(z) %2$@ fiókjait", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json index 9f6be1cf..04df6d77 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Apakah Anda ingin mengizinkan “%@” untuk menggunakan Face ID?", "buttons": [ - "OKE" + "Tidak Boleh" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Ingin Mengakses Mikrofon", @@ -153,31 +153,30 @@ { "title": "Pembaruan Pengaturan Operator", "buttons": [ - "Nanti", "Tidak Sekarang" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Ingin Menambah Konfigurasi VPN", "buttons": [ - "Izinkan" + "Jangan Izinkan" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Ingin Memfilter Konten Jaringan", "buttons": [ - "Izinkan" + "Jangan Izinkan" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone tidak Diaktifkan", "buttons": [ "Abaikan" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aktifkan Dikte?", @@ -355,7 +354,7 @@ "buttons": [ "Tidak Sekarang" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Ingin Menggunakan “%@” untuk Masuk", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json index 9ba3a7af..411d0bde 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Vuoi consentire a “%@” di utilizzare Face ID?", "buttons": [ - "OK" + "Non consentire" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” vorrebbe accedere al microfono", @@ -148,35 +148,35 @@ "buttons": [ "Non ora" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aggiornamento impostazioni gestore", "buttons": [ "Non ora" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” desidera aggiungere delle configurazioni VPN", "buttons": [ - "Consenti" + "Non consentire" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” desidera filtrare i contenuti di rete", "buttons": [ - "Consenti" + "Non consentire" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone non è stato attivato", "buttons": [ "Ignora" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Vuoi abilitare Dettatura?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json index 12aa9932..b1dcaf13 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json @@ -34,9 +34,9 @@ { "title": "“%@”にFace IDの使用を許可しますか?", "buttons": [ - "OK" + "許可しない" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”がマイクへのアクセスを求めています", @@ -141,35 +141,35 @@ "buttons": [ "今はしない" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "キャリア設定アップデート", "buttons": [ "今はしない" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”がVPN構成の追加を求めています", "buttons": [ - "許可" + "許可しない" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”がネットワークコンテンツのフィルタリングを求めています", "buttons": [ - "許可" + "許可しない" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhoneはアクティベートされていません", "buttons": [ "無視" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "音声入力を有効にしますか?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index 5bae05d9..a8c670ef 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -34,9 +34,9 @@ { "title": "‘%@’ 앱이 Face ID를 사용하도록 허용하겠습니까?", "buttons": [ - "승인" + "허용 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‘%@’이(가) 마이크에 접근하려고 합니다.", @@ -159,28 +159,28 @@ "buttons": [ "지금 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‘%@’에서 VPN 구성을 추가하고자 합니다.", "buttons": [ - "허용" + "허용 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‘%@’에서 네트워크 콘텐츠를 필터링하려고 합니다.", "buttons": [ - "허용" + "허용 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone이 네트워크에 연결되지 않음", "buttons": [ "무시" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "받아쓰기를 활성화하겠습니까?", @@ -408,7 +408,7 @@ "buttons": [ "지금 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‘%@’이(가) ‘%@’을(를) 사용하여 로그인하려고 합니다.", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json index 0d4eaf89..3521a2d7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Adakah anda mahu membenarkan “%@” menggunakan Face ID?", "buttons": [ - "OK" + "Jangan Benarkan" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Mahu Mengakses Mikrofon", @@ -154,31 +154,30 @@ { "title": "Kemas Kini Seting Pembawa", "buttons": [ - "Nanti", - "Bukan Sekarang" + "Nanti" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Mahu Menambah Konfigurasi VPN", "buttons": [ - "Benarkan" + "Jangan Benarkan" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Mahu Menapis Kandungan Rangkaian", "buttons": [ - "Benarkan" + "Jangan Benarkan" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone tidak Diaktifkan", "buttons": [ "Abaikan" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Dayakan Perencanaan?", @@ -388,7 +387,7 @@ "buttons": [ "Nanti" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Buka dalam aplikasi %@", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json index 5ee5c41e..b38c0f44 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Wil je toestaan dat %@ Face ID gebruikt?", "buttons": [ - "OK" + "Weiger" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "%@ wil toegang tot de microfoon", @@ -183,35 +183,35 @@ "buttons": [ "Nu niet" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Update voor aanbiederinstellingen", "buttons": [ "Nu niet" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "%@ wil VPN-configuraties toevoegen", "buttons": [ - "Sta toe" + "Weiger" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "%@ wil je netwerkinhoud filteren", "buttons": [ - "Sta toe" + "Weiger" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone is niet geactiveerd", "buttons": [ "Negeer" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Dicteren inschakelen?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json index 25bfbb47..49b25b86 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Vil du tillate at %@ bruker Face ID?", "buttons": [ - "OK" + "Ikke tillat" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "%@ vil ha tilgang til mikrofonen", @@ -155,28 +155,28 @@ "buttons": [ "Ikke nå" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "«%@» vil legge til VPN-konfigurasjoner", "buttons": [ - "Tillat" + "Ikke tillat" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "«%@» vil filtrere nettverksinnhold", "buttons": [ - "Tillat" + "Ikke tillat" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone er ikke aktivert", "buttons": [ "Ignorer" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aktiver diktering?", @@ -470,7 +470,7 @@ "buttons": [ "Ikke nå" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "%@ vil bruke %@ for å logge på", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json index 85989deb..ddea7ea7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json @@ -34,9 +34,9 @@ { "title": "Czy chcesz pozwolić „%@” używać Face ID?", "buttons": [ - "OK" + "Nie pozwalaj" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@” chce uzyskać dostęp do mikrofonu", @@ -141,35 +141,35 @@ "buttons": [ "Nie teraz" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Uaktualnienie ustawień operatora", "buttons": [ "Nie teraz" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@” chce dodać konfiguracje VPN", "buttons": [ - "Pozwól" + "Nie pozwalaj" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@” chce filtrować treści w sieci", "buttons": [ - "Pozwól" + "Nie pozwalaj" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone nie został aktywowany", "buttons": [ "Ignoruj" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Włączyć dyktowanie?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json index e51e0163..52a1b7a1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Deseja permitir que “%@” use o Face ID?", "buttons": [ - "OK" + "Não Permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Deseja Ter Acesso ao Microfone", @@ -148,35 +148,35 @@ "buttons": [ "Agora Não" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Atualização dos Ajustes da Operadora", "buttons": [ "Agora Não" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Deseja Adicionar Configurações de VPN", "buttons": [ - "Permitir" + "Não Permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Deseja Filtrar Conteúdo da Rede", "buttons": [ - "Permitir" + "Não Permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "O iPhone não está Ativado", "buttons": [ "Ignorar" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Ativar Ditado?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json index a17de20d..0b2bab4a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Deseja permitir que “%@” use Face ID?", "buttons": [ - "OK" + "Não permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” gostaria de aceder ao microfone", @@ -148,35 +148,35 @@ "buttons": [ "Agora não" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Atualização das definições de rede", "buttons": [ "Agora não" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” gostaria de adicionar configurações de VPN", "buttons": [ - "Permitir" + "Não permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” gostaria de filtrar conteúdo da rede", "buttons": [ - "Permitir" + "Não permitir" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "O iPhone não está ativado", "buttons": [ "Ignorar" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Ativar Ditado?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json index aecebbf0..20e7a1dd 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Doriți să permiteți ca aplicația “%@” să utilizeze Face ID?", "buttons": [ - "OK" + "Nu permiteți" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” ar dori să acceseze microfonul", @@ -155,28 +155,28 @@ "buttons": [ "Nu acum" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” ar dori să adauge configurații VPN", "buttons": [ - "Permiteți" + "Nu permiteți" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” ar dori să filtreze conținutul din rețea", "buttons": [ - "Permiteți" + "Nu permiteți" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone-ul nu este activat", "buttons": [ "Ignorați" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Activați dictarea?", @@ -351,7 +351,7 @@ "buttons": [ "Nu acum" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” vrea să utilizeze “%@” pentru autentificare", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json index 31cd6a61..3fbfa657 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json @@ -33,9 +33,9 @@ { "title": "Хотите разрешить «%@» использовать Face ID?", "buttons": [ - "Разрешить" + "Запретить" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Программа «%@» запрашивает доступ к микрофону.", @@ -147,28 +147,28 @@ "buttons": [ "Не сейчас" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "«%@» запрашивает разрешение на добавление конфигураций VPN", "buttons": [ - "Разрешить" + "Запретить" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Программа «%@» запрашивает разрешение фильтровать сетевой трафик", "buttons": [ - "Разрешить" + "Запретить" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone не активирован", "buttons": [ "Пропустить" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Включить диктовку?", @@ -464,7 +464,7 @@ "buttons": [ "Не сейчас" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Поиск на %@", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json index bb0f72bf..674e537c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Chcete aplikácii „%@“ povoliť používanie Face ID?", "buttons": [ - "OK" + "Nepovoliť" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aplikácia „%@“ žiada o prístup k mikrofónu", @@ -155,28 +155,28 @@ "buttons": [ "Teraz nie" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aplikácia „%@“ chce pridať nastavenia VPN", "buttons": [ - "Povoliť" + "Nepovoliť" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aplikácia „%@“ chce filtrovať obsah zo siete", "buttons": [ - "Povoliť" + "Nepovoliť" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone nie je aktivovaný", "buttons": [ "Ignorovať" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Povoliť Diktovanie?", @@ -470,7 +470,7 @@ "buttons": [ "Teraz nie" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "„%@“ chce na prihlásenie použiť „%@“", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json index 77a785f1..71a53be0 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Vill du tillåta att ”%@” använder Face ID?", "buttons": [ - "OK" + "Tillåt inte" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "”%@” begär åtkomst till mikrofonen", @@ -148,35 +148,35 @@ "buttons": [ "Inte nu" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Uppdatering av operatörsinställningar", "buttons": [ "Inte nu" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "”%@” vill lägga till VPN-konfigurationer", "buttons": [ - "Tillåt" + "Tillåt inte" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "”%@” vill filtrera nätverksinnehåll", "buttons": [ - "Tillåt" + "Tillåt inte" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone är inte aktiverad", "buttons": [ "Ignorera" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Vill du aktivera diktering?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json index d1c585de..3d097247 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "คุณต้องการอนุญาตให้ “%@” ใช้ Face ID หรือไม่", "buttons": [ - "ตกลง" + "ไม่อนุญาต" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” ต้องการที่จะเข้าถึงไมโครโฟน", @@ -148,35 +148,35 @@ "buttons": [ "ไม่ใช่ตอนนี้" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "การอัพเดทการตั้งค่าของผู้ให้บริการ", "buttons": [ "ไม่ใช่ตอนนี้" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” ต้องการที่จะเพิ่มการกำหนดค่า VPN", "buttons": [ - "อนุญาต" + "ไม่อนุญาต" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” ต้องการที่จะฟิลเตอร์เนื้อหาเครือข่าย", "buttons": [ - "อนุญาต" + "ไม่อนุญาต" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "ยังไม่เปิดใช้งาน iPhone", "buttons": [ "ไม่สนใจ" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "เปิดใช้งานป้อนตามคำบอกหรือไม่", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json index 5c3b1e02..9ea2bad1 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "“%@” uygulaması Face ID’yi kullanabilsin mi?", "buttons": [ - "Tamam" + "İzin Verme" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Mikrofona Erişmek İstiyor", @@ -155,28 +155,28 @@ "buttons": [ "Şimdi Değil" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” VPN Konfigürasyonları Eklemek İstiyor", "buttons": [ - "İzin Ver" + "İzin Verme" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Ağ İçeriğini Filtrelemek İstiyor", "buttons": [ - "İzin Ver" + "İzin Verme" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone Etkinleştirilemedi", "buttons": [ "Yok Say" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Dikte Etkinleştirilsin mi?", @@ -379,7 +379,7 @@ "buttons": [ "Şimdi Değil" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Giriş Yapmak için “%@” Kullanmak İstiyor", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json index 1aaf26ed..5ea8a859 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json @@ -40,9 +40,9 @@ { "title": "Ви хочете дозволити «%@» застосовувати Face ID?", "buttons": [ - "OK" + "Заборонити" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "«%@» хоче отримати доступ до мікрофона", @@ -186,7 +186,7 @@ "buttons": [ "Ігнорувати" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Увімкнути Диктування?", @@ -427,28 +427,28 @@ "buttons": [ "Не зараз" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Оновлення настройок оператора", "buttons": [ "Не зараз" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "«%@» хоче додати конфігурації VPN", "buttons": [ - "Дозволити" + "Заборонити" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "«%@» хоче фільтрувати мережний контент", "buttons": [ - "Дозволити" + "Заборонити" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Доступ до «Здоров’я»", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json index 21ef01bc..272b4756 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json @@ -41,9 +41,9 @@ { "title": "Bạn có muốn cho phép “%@” sử dụng Face ID không?", "buttons": [ - "OK" + "Từ chối" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Muốn Truy cập Micrô", @@ -153,31 +153,30 @@ { "title": "Cập nhật Cài đặt Nhà cung cấp", "buttons": [ - "Để sau", "Để Sau" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Muốn Thêm Cấu hình VPN", "buttons": [ - "Cho phép" + "Từ chối" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Muốn Lọc Nội dung Mạng", "buttons": [ - "Cho phép" + "Từ chối" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone chưa được Kích hoạt", "buttons": [ "Bỏ qua" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Bật Đọc chính tả?", @@ -425,7 +424,7 @@ "buttons": [ "Để Sau" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%1$@” Muốn Truy cập các Tài khoản %2$@ của bạn", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json index c6722615..25caf13b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json @@ -177,9 +177,9 @@ { "title": "您要允许“%@”使用面容 ID 吗?", "buttons": [ - "好" + "不允许" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”想在后台接收 VoIP 网络电话", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json index 6fb8dfc4..2c55d1b9 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json @@ -34,9 +34,9 @@ { "title": "您要允许“%@”使用面容 ID 吗?", "buttons": [ - "好" + "不允许" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”想访问您的麦克风", @@ -148,28 +148,28 @@ "buttons": [ "以后" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”想添加 VPN 配置", "buttons": [ - "允许" + "不允许" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”想要过滤网络内容", "buttons": [ - "允许" + "不允许" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone 尚未激活", "buttons": [ "忽略" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "启用听写?", @@ -421,7 +421,7 @@ "buttons": [ "以后" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”想要使用“%@”登录", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 6ab156d1..6ed2c588 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -34,9 +34,9 @@ { "title": "你允許「%@」使用 Face ID 嗎?", "buttons": [ - "好" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "「%@」要取用咪高風", @@ -139,39 +139,37 @@ { "title": "新的設定檔現已可供下載。是否要立即更新?", "buttons": [ - "稍後決定", - "現在不要" + "稍後決定" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "電訊商設定更新", "buttons": [ - "稍後決定", - "現在不要" + "稍後決定" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "「%@」想加入 VPN 設定", "buttons": [ - "允許" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "「%@」要過濾網絡內容", "buttons": [ - "允許" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone 尚未啟用", "buttons": [ "忽略" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "要啟用聽寫嗎?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index 1178c8ca..f405ea47 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -34,9 +34,9 @@ { "title": "要允許「%@」使用 Face ID 嗎?", "buttons": [ - "好" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "「%@」想要取用您的麥克風", @@ -146,31 +146,30 @@ { "title": "電信業者設定更新", "buttons": [ - "稍後再說", - "現在不要" + "稍後再說" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "「%@」想要加入 VPN 設定", "buttons": [ - "允許" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "「%@」想要過濾網路內容", "buttons": [ - "允許" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "未啟用 iPhone", "buttons": [ "忽略" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "要啟用聽寫嗎?", @@ -422,10 +421,9 @@ { "title": "新的設定現已可供下載。是否要立即更新?", "buttons": [ - "稍後再說", - "現在不要" + "稍後再說" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "「%@」想要使用「%@」登入", diff --git a/tools/springboard-alerts/frameworks.json b/tools/springboard-alerts/frameworks.json index 8980f4d6..126c7908 100644 --- a/tools/springboard-alerts/frameworks.json +++ b/tools/springboard-alerts/frameworks.json @@ -23,7 +23,7 @@ { "name": "TCC.framework", "values": [ - { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceFaceID", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, + { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceFaceID", "button": "REQUEST_ACCESS_DENY", "default_value": false }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceMicrophone", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServicePhotosAdd", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, { "title": "REQUEST_ACCESS_SERVICE_kTCCServiceCalendar", "button": "REQUEST_ACCESS_ALLOW", "default_value": true }, @@ -48,23 +48,23 @@ { "name": "CoreTelephony.framework", "values": [ - { "title": "CBMessageBody", "button": "CBMessageDeclineButton", "default_value": true }, - { "title": "CBMessageTitle", "button": "CBMessageDeclineButton", "default_value": true }, + { "title": "CBMessageBody", "button": "CBMessageDeclineButton", "default_value": false }, + { "title": "CBMessageTitle", "button": "CBMessageDeclineButton", "default_value": false }, { "title": "NO_SIM_CARD_INSTALLED", "button": "OK", "default_value": true } ] }, { "name": "NetworkExtension.framework", "values": [ - { "title": "APP_WARNING_HEADER_VPN", "button": "ALLOW_BUTTON", "default_value": true }, - { "title": "APP_WARNING_HEADER_FILTER", "button": "ALLOW_BUTTON", "default_value": true }, + { "title": "APP_WARNING_HEADER_VPN", "button": "DONT_ALLOW_BUTTON", "default_value": false }, + { "title": "APP_WARNING_HEADER_FILTER", "button": "DONT_ALLOW_BUTTON", "default_value": false }, { "title": "APP_WARNING_HEADER_DNS_PROXY", "button": "ALLOW_BUTTON", "default_value": true } ] }, { "name": "SpringBoard.app", "values": [ - { "title": "ACTIVATION_FAILED_TITLE", "button": "ACTIVATION_FAILED_IGNORE_BUTTON", "default_value": true } + { "title": "ACTIVATION_FAILED_TITLE", "button": "ACTIVATION_FAILED_IGNORE_BUTTON", "default_value": false } ] }, { From bf2497e78cd4b88879f657887e109ccdf20ed9bb Mon Sep 17 00:00:00 2001 From: Vladimir Date: Tue, 29 Oct 2019 11:40:14 +0300 Subject: [PATCH 21/33] Fix zh langs --- .../springboard-alerts-zh_HK.dataset/alerts.json | 6 ++++-- .../springboard-alerts-zh_TW.dataset/alerts.json | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 6ed2c588..1a4c1266 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -139,14 +139,16 @@ { "title": "新的設定檔現已可供下載。是否要立即更新?", "buttons": [ - "稍後決定" + "稍後決定", + "現在不要" ], "shouldAccept": false }, { "title": "電訊商設定更新", "buttons": [ - "稍後決定" + "稍後決定", + "現在不要" ], "shouldAccept": false }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index f405ea47..f46b293e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -146,7 +146,8 @@ { "title": "電信業者設定更新", "buttons": [ - "稍後再說" + "稍後再說", + "現在不要" ], "shouldAccept": false }, @@ -421,7 +422,8 @@ { "title": "新的設定現已可供下載。是否要立即更新?", "buttons": [ - "稍後再說" + "稍後再說", + "現在不要" ], "shouldAccept": false }, From f7ce0335fbd73ee383feb36d94f2695525c51254 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Tue, 29 Oct 2019 13:38:30 +0300 Subject: [PATCH 22/33] Fix unit-tests --- .../DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TestApp/DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m b/TestApp/DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m index 4c6c910a..2fcc6bd7 100644 --- a/TestApp/DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m +++ b/TestApp/DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m @@ -97,7 +97,7 @@ - (void)testAlertTitleEn_Au { NSString *alertTitle = @"Carrier Settings Update"; NSString *expectedButton = @"Not Now"; - BOOL expectedShouldAccept = YES; + BOOL expectedShouldAccept = NO; SpringBoardAlert *actual = [[SpringBoardAlerts shared] alertMatchingTitle:alertTitle]; expect(actual.defaultDismissButtonMarks).to.contain(expectedButton); @@ -145,8 +145,8 @@ - (void)testAlertTitleKo { SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; NSString *alertTitle = @"‘합니다’에서 네트워크 콘텐츠를 필터링하려고 합니다."; - NSString *expectedButton = @"허용"; - BOOL expectedShouldAccept = YES; + NSString *expectedButton = @"허용 안 함"; + BOOL expectedShouldAccept = NO; SpringBoardAlert *actual = [alertsArray alertMatchingTitle:alertTitle]; expect(actual.defaultDismissButtonMarks).to.contain(expectedButton); From aa016388592efd7c86d25c66eb9252076d5a6795 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Tue, 29 Oct 2019 14:39:06 +0300 Subject: [PATCH 23/33] Remove missed alert --- .../springboard-alerts-hi.dataset/alerts.json | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index 32745c9e..d6e93799 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -537,13 +537,6 @@ ], "shouldAccept": true }, - { - "title": "“%@” को सहायक उपकरणों से कनेक्ट होने की अनुमति देने के लिए ब्लूटूथ चालू करें", - "buttons": [ - "ठीक" - ], - "shouldAccept": true - }, { "title": "ऐप का उपयोग करते समय “%@” को आपके वर्तमान स्थान का उपयोग करने की अनुमति दें?", "buttons": [ From 90ef761e87efd7c2bb92040dd7afe5b701cc0532 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Wed, 30 Oct 2019 09:44:30 +0300 Subject: [PATCH 24/33] Fix ko lang --- .../springboard-alerts-ko.dataset/alerts.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index a8c670ef..bf71e455 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -263,10 +263,9 @@ { "title": "‘%@’ 앱이 Face ID를 사용하도록 허용하겠습니까?", "buttons": [ - "승인", - "확인" + "허용 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‘%@’이(가) Apple Music, 사용자의 음악 및 비디오 관련 활동 및 사용자의 미디어 보관함에 접근하려고 합니다.", From 6aaf38c879256d2fbef9db96fcb26dd4ca9ee7ef Mon Sep 17 00:00:00 2001 From: Vladimir Date: Wed, 30 Oct 2019 10:43:52 +0300 Subject: [PATCH 25/33] Fix missing values --- .../springboard-alerts-ar.dataset/alerts.json | 2 +- .../springboard-alerts-ca.dataset/alerts.json | 2 +- .../springboard-alerts-cs.dataset/alerts.json | 6 +++--- .../alerts.json | 4 ++-- .../alerts.json | 4 ++-- .../springboard-alerts-he.dataset/alerts.json | 2 +- .../springboard-alerts-hi.dataset/alerts.json | 2 +- .../springboard-alerts-hr.dataset/alerts.json | 2 +- .../springboard-alerts-hu.dataset/alerts.json | 8 ++++---- .../springboard-alerts-id.dataset/alerts.json | 4 ++-- .../springboard-alerts-ko.dataset/alerts.json | 6 +++--- .../springboard-alerts-ms.dataset/alerts.json | 5 ++--- .../springboard-alerts-no.dataset/alerts.json | 2 +- .../alerts.json | 2 +- .../springboard-alerts-ro.dataset/alerts.json | 2 +- .../springboard-alerts-ru.dataset/alerts.json | 6 +++--- .../springboard-alerts-sk.dataset/alerts.json | 2 +- .../springboard-alerts-tr.dataset/alerts.json | 4 ++-- .../springboard-alerts-uk.dataset/alerts.json | 12 ++++++------ .../springboard-alerts-vi.dataset/alerts.json | 4 ++-- .../alerts.json | 4 ++-- .../alerts.json | 12 ++++++------ .../alerts.json | 16 +++++++--------- .../alerts.json | 18 ++++++++---------- 24 files changed, 63 insertions(+), 68 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json index 4bcc3fec..ef0a6d7e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json @@ -148,7 +148,7 @@ "buttons": [ "ليس الآن" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "تحديث شركة الاتصالات", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json index a7a80869..18296347 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json @@ -149,7 +149,7 @@ "buttons": [ "Ara no" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Actualització de la configuració de l’operador", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json index 9c4ea5e4..bed633dd 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json @@ -140,7 +140,7 @@ "buttons": [ "Teď ne" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aktualizace nastavení", @@ -152,14 +152,14 @@ { "title": "„%@“ chce přidat konfigurace VPN", "buttons": [ - "Zakázat" + "Nepovolovat" ], "shouldAccept": false }, { "title": "„%@“ chce filtrovat obsah ze sítě", "buttons": [ - "Zakázat" + "Nepovolovat" ], "shouldAccept": false }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json index 909759d7..f7b4eae4 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json @@ -148,14 +148,14 @@ "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Service Provider Settings Update", "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” Would Like to Add VPN Configurations", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json index a479e4a1..f1b097fa 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json @@ -148,7 +148,7 @@ "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Carrier Settings Update", @@ -289,7 +289,7 @@ "buttons": [ "Not Now" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” has been using your location in the background over the past 3 days. Do you want to continue to allow background location use?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json index e484c621..73b3d6f9 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json @@ -148,7 +148,7 @@ "buttons": [ "לא כעת" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "עדכון להגדרות המפעיל", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index c783d76e..7c659c94 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -147,7 +147,7 @@ "buttons": [ "अभी नहीं" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "कैरियर सेटिंग्ज़ अपडेट", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json index 1962e3fa..f0c963dd 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json @@ -147,7 +147,7 @@ "buttons": [ "Ne sad" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Ažuriranje postavki operatera", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json index 4ce1c83d..25a8556c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json @@ -141,7 +141,7 @@ "buttons": [ "Ne most" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Szolgáltatói beállítások frissítése", @@ -153,9 +153,9 @@ { "title": "„%@” VPN-konfigurációt szeretne hozzáadni", "buttons": [ - "Engedélyezés" + "Tiltás" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "A(z) „%@” szűrni akarja a hálózati tartalmat", @@ -169,7 +169,7 @@ "buttons": [ "Kihagyás" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Engedélyezi a Diktálást?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json index 04df6d77..4fc96d08 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json @@ -148,12 +148,12 @@ "buttons": [ "Nanti" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Pembaruan Pengaturan Operator", "buttons": [ - "Tidak Sekarang" + "Nanti" ], "shouldAccept": false }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index bf71e455..7e4023b2 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -152,7 +152,7 @@ "buttons": [ "지금 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "통신 사업자 설정 업데이트", @@ -309,14 +309,14 @@ "buttons": [ "지금 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "이동통신사 설정 업데이트", "buttons": [ "지금 안 함" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "‘%@’이(가) 지난 3일간 백그라운드에서 사용자의 위치를 사용했습니다. 백그라운드에서의 위치 사용을 계속 허용하겠습니까?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json index 3521a2d7..d5cf4b9b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json @@ -146,15 +146,14 @@ { "title": "Seting baru tersedia. Adakah anda mahu mengemas kininya sekarang?", "buttons": [ - "Nanti", "Bukan Sekarang" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Kemas Kini Seting Pembawa", "buttons": [ - "Nanti" + "Bukan Sekarang" ], "shouldAccept": false }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json index 49b25b86..baea5a01 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json @@ -148,7 +148,7 @@ "buttons": [ "Ikke nå" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Oppdatering av operatørinnstillinger", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json index 0b2bab4a..7193699a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json @@ -295,7 +295,7 @@ "buttons": [ "Agora não" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” tem estado a usar a sua localização em segundo plano nos últimos 3 dias. Deseja continuar a permitir o uso em segundo plano?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json index 20e7a1dd..5eedd3e7 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json @@ -148,7 +148,7 @@ "buttons": [ "Nu acum" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Actualizare configurări operator", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json index 3fbfa657..c89ce35c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json @@ -140,7 +140,7 @@ "buttons": [ "Не сейчас" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Обновление настроек оператора", @@ -364,9 +364,9 @@ { "title": "Приложение «%@» запрашивает разрешение фильтровать сетевой трафик", "buttons": [ - "Разрешить" + "Запретить" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Открыть в приложении %@", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json index 674e537c..bb51f3f9 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json @@ -148,7 +148,7 @@ "buttons": [ "Teraz nie" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Aktualizácia nastavení operátora", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json index 9ea2bad1..26ef5101 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json @@ -148,7 +148,7 @@ "buttons": [ "Şimdi Değil" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Operatör Ayarı Güncelleme", @@ -295,7 +295,7 @@ "buttons": [ "Yok Say" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@” son 3 gündür arka planda konumunuzu kullanıyor. Arka planda konumun kullanılmasına izin vermeyi sürdürmek istiyor musunuz?", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json index 5ea8a859..495b6194 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json @@ -158,28 +158,28 @@ "buttons": [ "Не зараз" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Оновлення налаштувань", "buttons": [ "Не зараз" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "«%@» хоче додати VPN-конфігурації", "buttons": [ - "Дозволити" + "Заборонити" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "«%@» хоче фільтрувати мережевий контент", "buttons": [ - "Дозволити" + "Заборонити" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone не активовано", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json index 272b4756..a44d8524 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json @@ -148,12 +148,12 @@ "buttons": [ "Để sau" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "Cập nhật Cài đặt Nhà cung cấp", "buttons": [ - "Để Sau" + "Để sau" ], "shouldAccept": false }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json index 25caf13b..ed25b797 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json @@ -2,9 +2,9 @@ { "title": "您要允许“%@”使用面容ID吗?", "buttons": [ - "好" + "不允许" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "“%@”想访问您的麦克风", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json index 2c55d1b9..ba09010c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json @@ -141,7 +141,7 @@ "buttons": [ "以后" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "运营商设置更新", @@ -279,9 +279,9 @@ { "title": "您要允许“%@”使用面容ID吗?", "buttons": [ - "好" + "不允许" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "您要通过Siri来使用“%@”吗?", @@ -321,16 +321,16 @@ { "title": "“%@”想添加VPN配置", "buttons": [ - "允许" + "不允许" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone尚未激活", "buttons": [ "忽略" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "在“%@”App中打开", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 1a4c1266..0c78edff 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -139,16 +139,14 @@ { "title": "新的設定檔現已可供下載。是否要立即更新?", "buttons": [ - "稍後決定", - "現在不要" + "稍後決定" ], "shouldAccept": false }, { "title": "電訊商設定更新", "buttons": [ - "稍後決定", - "現在不要" + "稍後決定" ], "shouldAccept": false }, @@ -290,9 +288,9 @@ { "title": "你允許「%@」使用Face ID嗎?", "buttons": [ - "好" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "你要透過Siri使用「%@」嗎?", @@ -339,16 +337,16 @@ { "title": "%@想加入VPN設定", "buttons": [ - "允許" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "iPhone尚未啟用", "buttons": [ "忽略" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "用「%@」App開啟", diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index f46b293e..a988055b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -141,13 +141,12 @@ "buttons": [ "稍後再說" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "電信業者設定更新", "buttons": [ - "稍後再說", - "現在不要" + "稍後再說" ], "shouldAccept": false }, @@ -275,9 +274,9 @@ { "title": "要允許「%@」使用Face ID嗎?", "buttons": [ - "好" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "您要在「%@」上使用Siri嗎?", @@ -324,16 +323,16 @@ { "title": "「%@」想要加入VPN設定", "buttons": [ - "允許" + "不允許" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "未啟用iPhone", "buttons": [ "忽略" ], - "shouldAccept": true + "shouldAccept": false }, { "title": "在「%@」App中打開", @@ -422,8 +421,7 @@ { "title": "新的設定現已可供下載。是否要立即更新?", "buttons": [ - "稍後再說", - "現在不要" + "稍後再說" ], "shouldAccept": false }, From 2b3d3e836744c7a98706509034bc79879e194981 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Wed, 30 Oct 2019 11:27:11 +0300 Subject: [PATCH 26/33] Remove missed alert --- .../springboard-alerts-fr.dataset/alerts.json | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json index a9a612d8..41d3cd0b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json @@ -283,13 +283,6 @@ ], "shouldAccept": true }, - { - "title": "Se connecter", - "buttons": [ - "Annuler" - ], - "shouldAccept": true - }, { "title": "« %@ » a utilisé votre position en arrière-plan au cours des 3 derniers jours. L’autorisez-vous à continuer à utiliser votre position en arrière-plan ?", "buttons": [ From 69f81b97cd8d52bbb423f9cef907493db1f4f6f8 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Wed, 30 Oct 2019 11:44:22 +0300 Subject: [PATCH 27/33] Fix zh langs --- .../springboard-alerts-zh_HK.dataset/alerts.json | 6 ++++-- .../springboard-alerts-zh_TW.dataset/alerts.json | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index 0c78edff..cc341487 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -139,14 +139,16 @@ { "title": "新的設定檔現已可供下載。是否要立即更新?", "buttons": [ - "稍後決定" + "稍後決定", + "現在不要" ], "shouldAccept": false }, { "title": "電訊商設定更新", "buttons": [ - "稍後決定" + "稍後決定", + "現在不要" ], "shouldAccept": false }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index a988055b..dcd8c28b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -146,7 +146,8 @@ { "title": "電信業者設定更新", "buttons": [ - "稍後再說" + "稍後再說", + "現在不要" ], "shouldAccept": false }, @@ -421,7 +422,8 @@ { "title": "新的設定現已可供下載。是否要立即更新?", "buttons": [ - "稍後再說" + "稍後再說", + "現在不要" ], "shouldAccept": false }, From 2642bc3514a7141d3da5dd12f8eedc248c7bdfca Mon Sep 17 00:00:00 2001 From: Vladimir Date: Wed, 30 Oct 2019 11:59:16 +0300 Subject: [PATCH 28/33] Fix id lang --- .../springboard-alerts-id.dataset/alerts.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json index 4fc96d08..780759d4 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json @@ -153,7 +153,8 @@ { "title": "Pembaruan Pengaturan Operator", "buttons": [ - "Nanti" + "Nanti", + "Tidak Sekarang" ], "shouldAccept": false }, From cd87cda49c51672067e7e754de70f2fa0941be87 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Wed, 30 Oct 2019 13:16:05 +0300 Subject: [PATCH 29/33] Fix unit-tests --- .../DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TestApp/DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m b/TestApp/DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m index 2fcc6bd7..52d87b1d 100644 --- a/TestApp/DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m +++ b/TestApp/DeviceAgentUnitTests/Utilities/SpringboardAlertsTest.m @@ -162,8 +162,8 @@ - (void)testAlertTitleUk { SpringBoardAlerts *alertsArray = [[SpringBoardAlerts alloc] init_private]; NSString *alertTitle = @"«Прiложение» хоче фільтрувати мережевий контент"; - NSString *expectedButton = @"Дозволити"; - BOOL expectedShouldAccept = YES; + NSString *expectedButton = @"Заборонити"; + BOOL expectedShouldAccept = NO; SpringBoardAlert *actual = [alertsArray alertMatchingTitle:alertTitle]; expect(actual.defaultDismissButtonMarks).to.contain(expectedButton); From c42388a97beaa2e46cd369444ca145e6c80543c7 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Wed, 30 Oct 2019 17:22:33 +0300 Subject: [PATCH 30/33] Parse alerts from xcode 11.2 --- .../springboard-alerts-ar.dataset/alerts.json | 7 +++++++ .../springboard-alerts-ca.dataset/alerts.json | 3 ++- .../springboard-alerts-cs.dataset/alerts.json | 3 ++- .../springboard-alerts-da.dataset/alerts.json | 14 ++++++++++++++ .../springboard-alerts-de.dataset/alerts.json | 3 ++- .../springboard-alerts-el.dataset/alerts.json | 7 +++++++ .../springboard-alerts-en.dataset/alerts.json | 3 ++- .../springboard-alerts-en_AU.dataset/alerts.json | 3 ++- .../springboard-alerts-en_GB.dataset/alerts.json | 3 ++- .../springboard-alerts-es.dataset/alerts.json | 3 ++- .../springboard-alerts-es_419.dataset/alerts.json | 7 +++++++ .../springboard-alerts-fi.dataset/alerts.json | 3 ++- .../springboard-alerts-fr.dataset/alerts.json | 7 +++++++ .../springboard-alerts-fr_CA.dataset/alerts.json | 7 +++++++ .../springboard-alerts-he.dataset/alerts.json | 7 +++++++ .../springboard-alerts-hi.dataset/alerts.json | 7 +++++++ .../springboard-alerts-hr.dataset/alerts.json | 3 ++- .../springboard-alerts-hu.dataset/alerts.json | 14 ++++++++++++++ .../springboard-alerts-id.dataset/alerts.json | 7 +++++++ .../springboard-alerts-it.dataset/alerts.json | 7 +++++++ .../springboard-alerts-ja.dataset/alerts.json | 3 ++- .../springboard-alerts-ko.dataset/alerts.json | 10 +++++++++- .../springboard-alerts-ms.dataset/alerts.json | 3 ++- .../springboard-alerts-nl.dataset/alerts.json | 14 ++++++++++++++ .../springboard-alerts-no.dataset/alerts.json | 3 ++- .../springboard-alerts-pl.dataset/alerts.json | 7 +++++++ .../springboard-alerts-pt.dataset/alerts.json | 7 +++++++ .../springboard-alerts-pt_PT.dataset/alerts.json | 7 +++++++ .../springboard-alerts-ro.dataset/alerts.json | 3 ++- .../springboard-alerts-ru.dataset/alerts.json | 14 ++++++++++++++ .../springboard-alerts-sk.dataset/alerts.json | 3 ++- .../springboard-alerts-sv.dataset/alerts.json | 3 ++- .../springboard-alerts-th.dataset/alerts.json | 14 ++++++++++++++ .../springboard-alerts-tr.dataset/alerts.json | 10 +++++++++- .../springboard-alerts-uk.dataset/alerts.json | 3 ++- .../springboard-alerts-vi.dataset/alerts.json | 3 ++- .../springboard-alerts-yue_CN.dataset/alerts.json | 7 +++++++ .../springboard-alerts-zh_CN.dataset/alerts.json | 7 +++++++ .../springboard-alerts-zh_HK.dataset/alerts.json | 7 +++++++ .../springboard-alerts-zh_TW.dataset/alerts.json | 7 +++++++ tools/springboard-alerts/frameworks.json | 3 ++- 41 files changed, 236 insertions(+), 20 deletions(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json index ef0a6d7e..75a45291 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ar.dataset/alerts.json @@ -395,5 +395,12 @@ "موافق" ], "shouldAccept": true + }, + { + "title": "السماح لتطبيق %@ بالوصول إلى موقعك أثناء استخدامك للتطبيق؟", + "buttons": [ + "السماح لمرة واحدة" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json index 18296347..ead590bd 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ca.dataset/alerts.json @@ -21,7 +21,8 @@ "title": "Permets que “%@” accedeixi a la teva ubicació mentre estàs utilitzant l’app?", "buttons": [ "Permetre", - "Només amb l’app en ús" + "Només amb l’app en ús", + "Permetre una vegada" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json index bed633dd..272459fb 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-cs.dataset/alerts.json @@ -19,7 +19,8 @@ "title": "Chcete aplikaci %@ povolit přístup k polohovým údajům v čase, kdy ji používáte?", "buttons": [ "Povolit", - "Jen při používání aplikace" + "Jen při používání aplikace", + "Povolit jednou" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json index 0e4ff6ef..a9a8bad8 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-da.dataset/alerts.json @@ -422,5 +422,19 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Må “%@” få adgang til din lokalitet, mens du bruger appen?", + "buttons": [ + "Tillad en gang" + ], + "shouldAccept": true + }, + { + "title": "Det gør det muligt for “%@” at finde og oprette forbindelse til Bluetooth-tilbehør. Denne app bruger muligvis også Bluetooth til at registrere, når du er i nærheden.", + "buttons": [ + "OK" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json index ffa7211c..36a54482 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-de.dataset/alerts.json @@ -384,7 +384,8 @@ { "title": "Darf „%@“ auf deinen Standort zugreifen, wenn du die App benutzt?", "buttons": [ - "Erlauben" + "Erlauben", + "Einmal erlauben" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json index 86e7e415..8654118c 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-el.dataset/alerts.json @@ -486,5 +486,12 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Να επιτρέπεται στην εφαρμογή «%@» η πρόσβαση στην τοποθεσία σας ενώ χρησιμοποιείτε την εφαρμογή;", + "buttons": [ + "Να επιτραπεί μία φορά" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json index 985fabd2..28cd1461 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Allow “%@” to access your location while you are using the app?", "buttons": [ "Allow", - "Only While Using the App" + "Only While Using the App", + "Allow Once" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json index f7b4eae4..c02e84c0 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_AU.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Allow “%@” to access your location while you are using the app?", "buttons": [ "Allow", - "Only While Using the App" + "Only While Using the App", + "Allow Once" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json index f1b097fa..a0b713d3 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-en_GB.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Allow “%@” to access your location while you are using the app?", "buttons": [ "Allow", - "Only While Using the App" + "Only While Using the App", + "Allow Once" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json index 8b7f139f..a07b39b4 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "¿Permitir a %@ acceder a tu ubicación mientras utilizas la app?", "buttons": [ "Permitir", - "Solo al usarse la app" + "Solo al usarse la app", + "Permitir una vez" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json index 406e25c7..f0133fbe 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-es_419.dataset/alerts.json @@ -374,5 +374,12 @@ "OK" ], "shouldAccept": true + }, + { + "title": "¿Permitir que “%@” acceda a tu ubicación mientras usas la app?", + "buttons": [ + "Permitir una vez" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json index b4dfa0ab..9455df6e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fi.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Saako %@ käyttää sijaintiasi silloin, kun käytät appia?", "buttons": [ "Salli", - "Vain appia käytettäessä" + "Vain appia käytettäessä", + "Salli kerran" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json index 68b0377d..bfab9dd0 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr.dataset/alerts.json @@ -374,5 +374,12 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Autoriser « %@ » à accéder à votre position lorsque vous utilisez l’app ?", + "buttons": [ + "Autoriser une fois" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json index b3e98592..4ae18577 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-fr_CA.dataset/alerts.json @@ -367,5 +367,12 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Autoriser « %@ » à accéder à votre position lorsque vous utilisez cette app?", + "buttons": [ + "Autoriser une fois" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json index 73b3d6f9..acddb656 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-he.dataset/alerts.json @@ -413,5 +413,12 @@ "אישור" ], "shouldAccept": true + }, + { + "title": "לאפשר ל-״%@״ לגשת לפרטי מיקומך בזמן השימוש שלך ביישום?", + "buttons": [ + "אפשר פעם אחת" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json index 5ef31bc2..bc114006 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hi.dataset/alerts.json @@ -557,5 +557,12 @@ "ठीक" ], "shouldAccept": true + }, + { + "title": "ऐप के उपयोग के दौरान “%@” को अपना वर्तमान स्थान ऐक्सेस करने दें?", + "buttons": [ + "एक बार अनुमति दें" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json index f0c963dd..68791781 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hr.dataset/alerts.json @@ -19,7 +19,8 @@ "title": "Dozvoliti aplikaciji “%@” pristup vašoj lokaciji dok koristite aplikaciju?", "buttons": [ "Dozvoli", - "Tijekom uporabe aplikacije" + "Tijekom uporabe aplikacije", + "Dozvoli jedanput" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json index 25a8556c..8ce384c8 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-hu.dataset/alerts.json @@ -458,5 +458,19 @@ "Megnyitás" ], "shouldAccept": true + }, + { + "title": "A(z) „%@” 3 napja használja az Ön helyzetét a háttérben. Szeretné továbbra is engedélyezni a helyzet háttérben történő használatát?", + "buttons": [ + "Engedélyezés" + ], + "shouldAccept": true + }, + { + "title": "A(z) “%@” hozzáférhet a helyzetéhez az alkalmazás használatakor?", + "buttons": [ + "Engedélyezés egyszer" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json index 780759d4..928bd26a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-id.dataset/alerts.json @@ -392,5 +392,12 @@ "OKE" ], "shouldAccept": true + }, + { + "title": "Izinkan “%@” untuk mengakses lokasi Anda saat Anda sedang menggunakan app?", + "buttons": [ + "Izinkan Sekali" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json index 411d0bde..b12f51cc 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-it.dataset/alerts.json @@ -429,5 +429,12 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Vuoi che “%@” acceda alla tua posizione mentre usi l'app?", + "buttons": [ + "Consenti una volta" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json index b1dcaf13..a0c9599e 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ja.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "“%@”の使用中に位置情報の利用を許可しますか?", "buttons": [ "許可", - "このAppの使用中のみ許可" + "このAppの使用中のみ許可", + "1度だけ許可" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json index 7e4023b2..194bcd75 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ko.dataset/alerts.json @@ -391,7 +391,8 @@ { "title": "앱을 사용하는 동안 ‘%@’에서 사용자의 위치에 접근하도록 허용하겠습니까?", "buttons": [ - "허용" + "허용", + "한 번 허용" ], "shouldAccept": true }, @@ -479,5 +480,12 @@ "열기" ], "shouldAccept": true + }, + { + "title": "‘%@’이(가) Bluetooth 액세서리를 찾고 연결할 수 있도록 합니다. 이 앱은 Bluetooth를 사용해서 사용자가 주변에 있는지 확인할 수도 있습니다.", + "buttons": [ + "확인" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json index d5cf4b9b..41d7ac9b 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ms.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Benarkan “%@” mengakses lokasi anda semasa anda menggunakan app?", "buttons": [ "Benarkan", - "Hanya Semasa Menggunakan App" + "Hanya Semasa Menggunakan App", + "Benarkan Sekali" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json index b38c0f44..e5aa441a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-nl.dataset/alerts.json @@ -443,5 +443,19 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Wil je %@ toegang tot je locatie geven terwijl je de app gebruikt?", + "buttons": [ + "Sta één sessie toe" + ], + "shouldAccept": true + }, + { + "title": "Zoek op %@", + "buttons": [ + "Open" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json index baea5a01..dd2ea5f3 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-no.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Vil du gi %@ tilgang til posisjonen din når du bruker appen?", "buttons": [ "Tillat", - "Kun når appen er i bruk" + "Kun når appen er i bruk", + "Tillat én gang" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json index ddea7ea7..83869b95 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pl.dataset/alerts.json @@ -416,5 +416,12 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Pozwalać aplikacji „%@” udostępniać Twoje położenie, gdy jej używasz?", + "buttons": [ + "Pozwól raz" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json index 52a1b7a1..35e89849 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt.dataset/alerts.json @@ -443,5 +443,12 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Permitir que “%@” acesse sua localização enquanto você estiver usando o app?", + "buttons": [ + "Permitir Uma Vez" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json index 7193699a..6469c96d 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-pt_PT.dataset/alerts.json @@ -388,5 +388,12 @@ "OK" ], "shouldAccept": true + }, + { + "title": "Permitir que “%@” aceda à sua localização enquanto estiver a usar a aplicação?", + "buttons": [ + "Permitir uma vez" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json index 5eedd3e7..7e9237cd 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ro.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Permiteți ca aplicația “%@” să acceseze localizarea dvs. în timp ce o utilizați?", "buttons": [ "Permiteți", - "La utilizarea aplicației" + "La utilizarea aplicației", + "Permiteți o dată" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json index c89ce35c..a7c2e2c9 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json @@ -529,5 +529,19 @@ "Разрешить" ], "shouldAccept": true + }, + { + "title": "Разрешить приложению «%@» доступ к Вашим геоданным, пока Вы используете его?", + "buttons": [ + "Разрешить один раз" + ], + "shouldAccept": true + }, + { + "title": "Приложение «%@» хочет использовать для входа «%@»", + "buttons": [ + "Продолжить" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json index ad1f6288..9147adef 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sk.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Chcete povoliť apke „%@“ pristupovať k vašej polohe v čase, keď ju používate?", "buttons": [ "Povoliť", - "Len počas používania" + "Len počas používania", + "Povoliť raz" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json index 71a53be0..b8f30a44 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-sv.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Vill du tillåta ”%@” att se din platsinfo när du använder appen?", "buttons": [ "Tillåt", - "Bara när appen används" + "Bara när appen används", + "Tillåt en gång" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json index 3d097247..4485ae98 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-th.dataset/alerts.json @@ -423,5 +423,19 @@ "อนุญาต" ], "shouldAccept": true + }, + { + "title": "อนุญาตให้ “%@” เข้าถึงตำแหน่งที่ตั้งของคุณระหว่างที่คุณใช้แอพอยู่หรือไม่", + "buttons": [ + "อนุญาตครั้งเดียว" + ], + "shouldAccept": true + }, + { + "title": "“%@” ต้องการที่จะเข้าถึงการจำเสียงพูด", + "buttons": [ + "ตกลง" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json index 26ef5101..5ce6d392 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-tr.dataset/alerts.json @@ -363,7 +363,8 @@ { "title": "“%@”, uygulamayı kullanırken konumunuza erişebilsin mi?", "buttons": [ - "İzin Ver" + "İzin Ver", + "Bir Kez İzin Ver" ], "shouldAccept": true }, @@ -430,5 +431,12 @@ "Sonra" ], "shouldAccept": true + }, + { + "title": "“%@” Giriş Yapmak İçin Şunu Kullanmak İstiyor: “%@”", + "buttons": [ + "Sürdür" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json index 495b6194..18bb8bab 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-uk.dataset/alerts.json @@ -19,7 +19,8 @@ "title": "Надавати програмі «%@» доступ до вашого місця, коли ви нею користуєтесь?", "buttons": [ "Надавати", - "Лише за використання" + "Лише за використання", + "Дозволити раз" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json index a44d8524..13ac4c23 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-vi.dataset/alerts.json @@ -20,7 +20,8 @@ "title": "Cho phép “%@” truy cập vị trí của bạn khi bạn đang dùng ứng dụng?", "buttons": [ "Cho phép", - "Chỉ khi dùng ứng dụng" + "Chỉ khi dùng ứng dụng", + "Cho phép một lần" ], "shouldAccept": true }, diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json index ed25b797..e5ddefbe 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-yue_CN.dataset/alerts.json @@ -187,5 +187,12 @@ "好" ], "shouldAccept": true + }, + { + "title": "允许“%@”在您使用该App时访问您的位置吗?", + "buttons": [ + "允许一次" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json index 38c59640..8d952071 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_CN.dataset/alerts.json @@ -450,5 +450,12 @@ "好" ], "shouldAccept": true + }, + { + "title": "允许“%@”在您使用该App时访问您的位置吗?", + "buttons": [ + "允许一次" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json index a8208ab4..9fab9f37 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_HK.dataset/alerts.json @@ -518,5 +518,12 @@ "好" ], "shouldAccept": true + }, + { + "title": "要允許「%@」在你使用App時取用你的位置嗎?", + "buttons": [ + "允許一次" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json index 1db6ada0..e13fb916 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-zh_TW.dataset/alerts.json @@ -448,5 +448,12 @@ "好" ], "shouldAccept": true + }, + { + "title": "當您使用App的時候,要允許「%@」取用您的位置嗎?", + "buttons": [ + "允許一次" + ], + "shouldAccept": true } ] \ No newline at end of file diff --git a/tools/springboard-alerts/frameworks.json b/tools/springboard-alerts/frameworks.json index 530a8408..c738e7e6 100644 --- a/tools/springboard-alerts/frameworks.json +++ b/tools/springboard-alerts/frameworks.json @@ -17,7 +17,8 @@ "name": "Maps.app", "values": [ { "title": "Allow '%@' to access your location while you use the app?", "button": "Allow", "default_value": true }, - { "title": "Allow '%@' to access your location while you are using the app?", "button": "Allow", "default_value": true } + { "title": "Allow '%@' to access your location while you are using the app?", "button": "Allow", "default_value": true }, + { "title": "Allow '%@' to access your location while you are using the app?", "button": "Allow Once", "default_value": true } ] }, { From 68b649f53c8da7f97dd73a4998a896f6fe74bc67 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Thu, 7 Nov 2019 13:52:10 +0300 Subject: [PATCH 31/33] Add missing alerts --- .../springboard-alerts-ru.dataset/alerts.json | 3 ++- tools/springboard-alerts/frameworks.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json index a7c2e2c9..ba6f879a 100644 --- a/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json +++ b/Server/Resources.xcassets/springboard-alerts/springboard-alerts-ru.dataset/alerts.json @@ -266,7 +266,8 @@ "buttons": [ "Разрешить", "Разрешать всегда", - "При использовании приложения" + "При использовании приложения", + "При использовании" ], "shouldAccept": true }, diff --git a/tools/springboard-alerts/frameworks.json b/tools/springboard-alerts/frameworks.json index c738e7e6..ee68d4af 100644 --- a/tools/springboard-alerts/frameworks.json +++ b/tools/springboard-alerts/frameworks.json @@ -7,6 +7,7 @@ { "title": "LOCATION_CLIENT_PERMISSION_ALWAYS", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, { "title": "LOCATION_CLIENT_PERMISSION_WHENINUSE", "button": "LOCATION_CLIENT_PERMISSION_KEEP_ALWAYS_BUTTON", "default_value": true }, { "title": "LOCATION_CLIENT_PERMISSION_WHENINUSE", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, + { "title": "LOCATION_CLIENT_PERMISSION_WHENINUSE", "button": "LOCATION_CLIENT_PERMISSION_WHENINUSE_BUTTON", "default_value": true }, { "title": "LOCATION_CLIENT_PERMISSION_UPGRADE_WHENINUSE_ALWAYS", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, { "title": "LOCATION_CLIENT_PERMISSION_REPROMPT_ZERO", "button": "LOCATION_CLIENT_PERMISSION_OK", "default_value": true }, From bd217c3f04e9fabfa65bea2602e2ac1fdef30f8d Mon Sep 17 00:00:00 2001 From: Joshua Moody Date: Mon, 11 Nov 2019 12:32:36 +0100 Subject: [PATCH 32/33] Update server version to 2.1.0 --- AppStub/Info.plist | 2 +- CHANGELOG.md | 4 ++++ README.md | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/AppStub/Info.plist b/AppStub/Info.plist index 2504eb12..a7df09a6 100644 --- a/AppStub/Info.plist +++ b/AppStub/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.0.2 + 2.1.0 CFBundleSignature ???? CFBundleVersion diff --git a/CHANGELOG.md b/CHANGELOG.md index 4533b19c..a51e6392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 2.1.0 + +Fixes various problems in dismiss-SpringBoard-alert system. + ### 2.0.2 * Add push notification alerts from iOS 12, 13 #358 diff --git a/README.md b/README.md index fff6f25a..c04263fe 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ | develop | master | [versioning](VERSIONING.md) | [license](LICENSE) | [contributing](CONTRIBUTING.md)| |---------|--------|-----------------------------|--------------------|--------------------------------| -|[![Build Status](https://msmobilecenter.visualstudio.com/Mobile-Center/_apis/build/status/test-cloud/xamarin-uitest/calabash.DeviceAgent.iOS?branchName=develop)](https://msmobilecenter.visualstudio.com/Mobile-Center/_build/latest?definitionId=3510&branchName=develop) | [![Build Status](https://msmobilecenter.visualstudio.com/Mobile-Center/_apis/build/status/test-cloud/xamarin-uitest/calabash.DeviceAgent.iOS?branchName=master)](https://msmobilecenter.visualstudio.com/Mobile-Center/_build/latest?definitionId=3510&branchName=master) | [![Version](https://img.shields.io/badge/version-2.0.2-green.svg)](https://img.shields.io/badge/version-2.0.2-green.svg) |[![License](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)](LICENSE) | [![Contributing](https://img.shields.io/badge/contrib-gitflow-orange.svg)](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow/)| +|[![Build Status](https://msmobilecenter.visualstudio.com/Mobile-Center/_apis/build/status/test-cloud/xamarin-uitest/calabash.DeviceAgent.iOS?branchName=develop)](https://msmobilecenter.visualstudio.com/Mobile-Center/_build/latest?definitionId=3510&branchName=develop) | [![Build Status](https://msmobilecenter.visualstudio.com/Mobile-Center/_apis/build/status/test-cloud/xamarin-uitest/calabash.DeviceAgent.iOS?branchName=master)](https://msmobilecenter.visualstudio.com/Mobile-Center/_build/latest?definitionId=3510&branchName=master) | [![Version](https://img.shields.io/badge/version-2.1.0-green.svg)](https://img.shields.io/badge/version-2.1.0-green.svg) |[![License](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)](LICENSE) | [![Contributing](https://img.shields.io/badge/contrib-gitflow-orange.svg)](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow/)| ## DeviceAgent.iOS From b91397ad0fe6a347d0d5cb04fe258dce8f9db39a Mon Sep 17 00:00:00 2001 From: Joshua Moody Date: Mon, 11 Nov 2019 12:35:39 +0100 Subject: [PATCH 33/33] ado: build release version with Xcode 11.2 --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b1b80fba..206be5a8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,7 +10,7 @@ variables: # # Apple has fixed this bug in Xcode 11.2. When that is released, we should # change this to 'Mojave-Xcode-11.2" - AzurePublishWhen: "Mojave-Xcode-10.3" + AzurePublishWhen: "Mojave-Xcode-11.2" trigger: tags: @@ -90,7 +90,6 @@ jobs: - script: bundle exec bin/ci/cucumber.rb displayName: "exec cucumber" - # azureStorage* env vars are defined in the pipeline UI as secret variables - bash: "./bin/ci/az-publish.sh" env: AZURE_STORAGE_ACCOUNT: $(AzureStorageAccount)