From b1ae717a023fbb0250502c20a301c6084b8875b2 Mon Sep 17 00:00:00 2001 From: cocoa-dev Date: Tue, 13 Jul 2021 17:05:57 +0900 Subject: [PATCH 1/2] remove unused function atttribute --- src/Covid19Radar.Api/TemporaryExposureKeysApi.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Covid19Radar.Api/TemporaryExposureKeysApi.cs b/src/Covid19Radar.Api/TemporaryExposureKeysApi.cs index 9a4c448f1..6534dc122 100644 --- a/src/Covid19Radar.Api/TemporaryExposureKeysApi.cs +++ b/src/Covid19Radar.Api/TemporaryExposureKeysApi.cs @@ -1,4 +1,4 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public +/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ @@ -39,7 +39,6 @@ ILogger logger ValidationServerService = validationServerService; } - [FunctionName(nameof(TemporaryExposureKeysApi))] public async Task RunAsync( [HttpTrigger(AuthorizationLevel.Function, "get", Route = "TemporaryExposureKeys")] HttpRequest req) { @@ -64,7 +63,6 @@ public async Task RunAsync( return new OkObjectResult(result); } - [FunctionName(nameof(TemporaryExposureKeysApi) + "WithRegion")] public async Task RunWithRegionAsync( [HttpTrigger(AuthorizationLevel.Function, "get", Route = "TemporaryExposureKeys/{region}")] HttpRequest req, string region) From 9cebac942f65bccb6021eb112249da1d3a00d236 Mon Sep 17 00:00:00 2001 From: cocoa-dev Date: Wed, 14 Jul 2021 10:27:20 +0900 Subject: [PATCH 2/2] Added an explanation screen about how to get the processing number Other minor improvements --- .../Covid19Radar/Resources/AppResources.en.resx | 2 +- .../Covid19Radar/Resources/AppResources.ja.resx | 4 ++-- .../Covid19Radar/Resources/AppResources.resx | 2 +- .../Covid19Radar/Resources/AppResources.zh-Hans.resx | 2 +- .../HomePage/HowToReceiveProcessingNumberPage.xaml | 12 ++++++++++-- .../Covid19Radar/Views/HomePage/NotifyOtherPage.xaml | 6 ++++-- .../Covid19Radar/Views/Tutorial/TutorialPage4.xaml | 2 ++ 7 files changed, 21 insertions(+), 9 deletions(-) diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.en.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.en.resx index c025b37a8..df412af7f 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.en.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.en.resx @@ -941,7 +941,7 @@ Storage : If you are contacted by a health center, please say that you would like to register positive test result using the Contact Confirmation Application. - 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝え下さい。 + 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝えください。 After that, you will receive an 8-digit processing number via SMS or email. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ja.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ja.resx index c69a69783..b93294365 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ja.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ja.resx @@ -940,8 +940,8 @@ 処理番号の取得方法 - 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝え下さい。 - 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝え下さい。 + 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝えください。 + 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝えください。 SMSまたはメールにて8桁の処理番号が送られてきます。 diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.resx index 060653559..b1bacc5a6 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.resx @@ -1046,7 +1046,7 @@ Storage : If you are contacted by a health center, please say that you would like to register positive test result using the Contact Confirmation Application. - 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝え下さい。 + 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝えください。 After that, you will receive an 8-digit processing number via SMS or email. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hans.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hans.resx index 85dacc354..3d25ad330 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hans.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hans.resx @@ -943,7 +943,7 @@ 如果保健中心与您联系,请说明您想使用接触确认应用登记阳性检测结果。 - 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝え下さい。 + 保健所から連絡がありましたら「接触確認アプリでの陽性登録を希望」とお伝えください。 您将通过短信或电子邮件收到一个8位数的处理号码。 diff --git a/Covid19Radar/Covid19Radar/Views/HomePage/HowToReceiveProcessingNumberPage.xaml b/Covid19Radar/Covid19Radar/Views/HomePage/HowToReceiveProcessingNumberPage.xaml index a6517130b..a6513d9be 100644 --- a/Covid19Radar/Covid19Radar/Views/HomePage/HowToReceiveProcessingNumberPage.xaml +++ b/Covid19Radar/Covid19Radar/Views/HomePage/HowToReceiveProcessingNumberPage.xaml @@ -60,8 +60,12 @@