diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 35e01ca5..9ab0e80e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -74,6 +74,7 @@ - Kimihiro Shirase - Tassana Thaveeteeratham (Thai Translation) - Kotaro Sakamoto +- Koichi Yokota (Documentation) # Original Covid19Radar Beta Testers - Nagahata Kenji diff --git a/COPYRIGHT_THIRD_PARTY_SOFTWARE_NOTICES.md b/COPYRIGHT_THIRD_PARTY_SOFTWARE_NOTICES.md index 7eeba568..903ec579 100644 --- a/COPYRIGHT_THIRD_PARTY_SOFTWARE_NOTICES.md +++ b/COPYRIGHT_THIRD_PARTY_SOFTWARE_NOTICES.md @@ -9,18 +9,9 @@ The original copyright notices and the licenses under which COVID-19Radar commun --- Copyright (C) 2020 COVID-19Radar Contributors -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. - -You should have received a copy of the GNU Affero General Public License -along with this program. If not, see . +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/. --- ## Visual Studio App Center SDK for .NET @@ -394,3 +385,49 @@ The above copyright notice and this permission notice shall be included in all c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +--- +## (Font) Font Awesome Free +--- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want. + +Icons CC BY 4.0 License +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons packaged as .svg and .js files types. + +Fonts SIL OFL 1.1 License +In the Font Awesome Free download, the SIL OLF license applies to all icons packaged as web and desktop font files. + +Code MIT License +In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. + +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font Awesome Free files already contain embedded comments with sufficient attribution, so you shouldn't need to do anything additional when using these files normally. + +We've kept attribution comments terse, so we ask that you do not actively work to remove them from files, especially code. They're a great way for folks to learn about Font Awesome. + +--- +## (Font) Noto Sans CJK JP +--- + +This Font Software is licensed under the SIL Open Font License, +Version 1.1. + +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +--- +## (Font) Roboto +--- + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +--- +## (Font) Material Design Icons +--- + +Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/), with Reserved Font Name Material Design Icons. + +Copyright (c) 2014, Google (http://www.google.com/design/) uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE + +This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL diff --git a/Covid19Radar/Covid19Radar.Android/Covid19Radar.Android.csproj b/Covid19Radar/Covid19Radar.Android/Covid19Radar.Android.csproj index 9aa3e7fc..65de88d1 100644 --- a/Covid19Radar/Covid19Radar.Android/Covid19Radar.Android.csproj +++ b/Covid19Radar/Covid19Radar.Android/Covid19Radar.Android.csproj @@ -49,7 +49,6 @@ true true d8 - r8 false @@ -97,6 +96,8 @@ CJK + d8 + true true diff --git a/Covid19Radar/Covid19Radar/App.xaml b/Covid19Radar/Covid19Radar/App.xaml index 46191112..8d6173ce 100644 --- a/Covid19Radar/Covid19Radar/App.xaml +++ b/Covid19Radar/Covid19Radar/App.xaml @@ -4,7 +4,7 @@ xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:Covid19Radar" - xmlns:prism="http://prismlibrary.com"> + xmlns:prism="clr-namespace:Prism.DryIoc;assembly=Prism.DryIoc.Forms"> @@ -129,7 +129,7 @@ - + diff --git a/Covid19Radar/Covid19Radar/Common/AppConstants.cs b/Covid19Radar/Covid19Radar/Common/AppConstants.cs index 9ae7aab8..0c03ccdc 100644 --- a/Covid19Radar/Covid19Radar/Common/AppConstants.cs +++ b/Covid19Radar/Covid19Radar/Common/AppConstants.cs @@ -19,6 +19,10 @@ public static class AppConstants /// Max Error Count /// public const int MaxErrorCount = 3; + /// + /// Max diagnosis UID Count + /// + public const int MaxDiagnosisUidCount = 8; public const string positiveRegex = @"\b[0-9]{8}\b"; diff --git a/Covid19Radar/Covid19Radar/Model/MainMenuModel.cs b/Covid19Radar/Covid19Radar/Model/MainMenuModel.cs index 99228b94..5709e138 100644 --- a/Covid19Radar/Covid19Radar/Model/MainMenuModel.cs +++ b/Covid19Radar/Covid19Radar/Model/MainMenuModel.cs @@ -1,9 +1,51 @@ -namespace Covid19Radar.Model +using System.ComponentModel; +using Xamarin.Forms; + +namespace Covid19Radar.Model { - public class MainMenuModel + public class MainMenuModel : INotifyPropertyChanged { + private string iconColor; + private string textColor; + public event PropertyChangedEventHandler PropertyChanged; + public string Title { get; set; } public string Icon { get; set; } public string PageName { get; set; } + public string IconColor + { + set + { + if (iconColor != value) + { + iconColor = value; + OnPropertyChanged("IconColor"); + } + } + get + { + return iconColor; + } + } + public string TextColor + { + set + { + if (textColor != value) + { + textColor = value; + OnPropertyChanged("TextColor"); + } + } + get + { + return textColor; + } + } + + protected virtual void OnPropertyChanged(string propertyName) + { + PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); + } } } diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.af.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.af.xlf index 684aba2c..582fa0c1 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.af.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.af.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.am.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.am.xlf index 6197201a..a52ab676 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.am.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.am.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ar.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ar.xlf index 11fff383..b7725f31 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ar.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ar.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.az-Cyrl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.az-Cyrl.xlf index f59527d9..db61869f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.az-Cyrl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.az-Cyrl.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.be.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.be.xlf index f3f25840..af1b6905 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.be.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.be.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bez.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bez.xlf index 2962950f..079c87e2 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bez.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bez.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bg.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bg.xlf index 4d1645a6..c31c6685 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bg.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bg.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bn.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bn.xlf index f2701c14..94bec626 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bn.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bn.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bs-Cyrl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bs-Cyrl.xlf index 635a86be..c4f46939 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bs-Cyrl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.bs-Cyrl.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/hr/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/hr/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ca.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ca.xlf index 1ffa7a2a..bc946512 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ca.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ca.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ceb.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ceb.xlf index ea927a7a..7b2751ac 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ceb.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ceb.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.co.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.co.xlf index ea7dd16c..d79a1d86 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.co.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.co.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.cs.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.cs.xlf index 7742f778..c4070a81 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.cs.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.cs.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.cy.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.cy.xlf index 06743cdd..a99d8a42 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.cy.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.cy.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.da.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.da.xlf index 3c92a98e..5f16c5cb 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.da.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.da.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.de.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.de.xlf index f13bdb2e..25306203 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.de.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.de.xlf @@ -720,8 +720,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.el.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.el.xlf index 6c5a3857..d4569668 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.el.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.el.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.en.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.en.xlf index 404cdcc9..e7e1e21f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.en.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.en.xlf @@ -717,8 +717,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.eo.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.eo.xlf index f83d6f3f..b6fcd4c2 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.eo.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.eo.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.es.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.es.xlf index 64b4792f..74e31133 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.es.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.es.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.et.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.et.xlf index 5bbce6da..b987d713 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.et.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.et.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.eu.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.eu.xlf index 0f9a6551..69cf8edc 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.eu.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.eu.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fa.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fa.xlf index 97215f11..26fc34fe 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fa.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fa.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fi.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fi.xlf index 519f8f41..efe07d1b 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fi.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fi.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fil.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fil.xlf index 639f20d7..63e7c2de 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fil.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fil.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fr.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fr.xlf index fc6a0685..27b6b900 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fr.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fr.xlf @@ -569,7 +569,7 @@ Menu - W!!Mëñµ 表!!W + Menu メニュー @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fy.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fy.xlf index b43a07f4..d28515d5 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fy.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.fy.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ga.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ga.xlf index 4c1f03e6..4264784f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ga.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ga.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gd.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gd.xlf index 0b6199c7..2211b9f7 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gd.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gd.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gl.xlf index 1c7ca0de..c48960f4 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gl.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gu.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gu.xlf index 79ca4418..c84e6c9f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gu.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.gu.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ha-Latn.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ha-Latn.xlf index fc1db1f3..b4c93efc 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ha-Latn.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ha-Latn.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.haw.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.haw.xlf index 6bf29be6..d8bd3745 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.haw.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.haw.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.he.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.he.xlf index 785b8c49..8798ee64 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.he.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.he.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hi.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hi.xlf index 2a24a7ea..ab2ef724 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hi.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hi.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hmn.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hmn.xlf index d2ed2c4f..2fd026e5 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hmn.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hmn.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hr.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hr.xlf index 90a3e635..4571e415 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hr.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hr.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ht.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ht.xlf index e69b2104..f80a1059 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ht.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ht.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hu.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hu.xlf index 87665545..a3b93c9a 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hu.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hu.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hy.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hy.xlf index d7d67a3c..2af8c560 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hy.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.hy.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.id.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.id.xlf index 093e2cfa..a47609a0 100755 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.id.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.id.xlf @@ -65,7 +65,7 @@ No known exposures - Tak ada paparan/kontak jarak dekat dengan pengguna positif yang teridentifikasi + Tak ada paparan/kontak jarak dekat yang teridentifikasi If not found exposures data @@ -108,7 +108,7 @@ Ask your family and friends to participate - Bagikan aplikasi ke keluarga atau teman + Ajak keluarga dan teman untuk berpartisipasi 本アプリを広めましょう @@ -117,7 +117,7 @@ Sharing positive information and anonymous notification to others - Berbagi informasi dan memberi notifikasi hasil uji positif secara anonim ke pengguna lain + Berbagi informasi hasil uji positif dan memberi notifikasi secara anonim ke pengguna lain Button NotifyOtherPage @@ -131,7 +131,7 @@ Waiting for register - Menunggu pendaftaran + Menunggu untuk mendaftar Do you really want to reset all the data? @@ -190,12 +190,12 @@ Stop / delete close contact history - Berhenti / hapus data paparan/kontak jarak dekat yang lalu + Berhenti / hapus data riwayat paparan/kontak jarak dekat 記録の停止/削除 When you run this app, each smartphone will generate a random code. No personal information and no location information including GPS data is collected. - Ketika aplikasi ini dijalankan, setiap perangkat akan menghasilkan kode acak. Tak ada informasi pribadi atau lokasi, termasuk data GPS, yang kumpulkan. + Ketika aplikasi ini dijalankan, setiap perangkat akan menghasilkan kode acak. Tak ada informasi pribadi dan lokasi, termasuk data GPS, yang kumpulkan. アプリを実行した際に、各スマートフォンで接触符号を生成して持ちます。氏名・電話番号などの個人情報やGPSなどスマートフォンの位置情報を使うことはなく、記録されることもありません。 @@ -205,7 +205,7 @@ If smartphones running this app are in close contact (within 1 meter for 15 minutes or more), this is recorded as a close contact. - Berada dalam jarak dekat dengan pengguna lain aplikasi ini (dalam jarak 1 meter selama 15 menit atau lebih) dicatat sebagai "kontak jarak dekat". + Jika perangkat yang terpasang aplikasi ini berada dalam jarak dekat (dalam jarak 1 meter selama 15 menit atau lebih), maka akan dicatat sebagai "kontak jarak dekat". 1メートル以内、15分以上の他のアプリユーザーとの接触は「接触」として記録されます。 @@ -215,8 +215,7 @@ Phones in close contact exchange their random codes. This information will not be used until either user registers positive test results with this app. The close contact history will be erased after 14 days. Note: The code changes regularly to protect your privacy. - Perangkat dalam jarak dekat saling bertukar kode acak masing-masing. Informasi ini tidak akan digunakan sampai salah satu pengguna perangkat tersebut mendaftarkan hasil tes positif COVID-19 ke dalam aplikasi ini. Rekaman data kontak jarak dekat akan dihapus setelah 14 hari. -Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda. + Perangkat dalam jarak dekat saling bertukar kode acak masing-masing. Informasi ini tidak akan digunakan sampai salah satu pengguna perangkat tersebut mendaftarkan hasil tes positif COVID-19 di dalam aplikasi ini. Riwayat kontak jarak dekat akan dihapus setelah 14 hari. Catatan: kode akan berubah secara berkala untuk melindungi privasi anda. このとき、接触した相手の接触符号の記録をアプリに行います。どちらかの利用者が陽性の登録を行うまでは接触の情報は利用されません。接触の履歴は14日後に消去されます。 ※接触符号は定期的に変わります。 @@ -226,8 +225,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< From app settings, you can stop using the app and delete user data. - Dari menu pengaturan di dalam aplikasi, anda bisa mengaktifkan/menonaktifkan Bluetooth dan notifikasi, berhenti menggunakan aplikasi ini, dan menghapus rekaman data kontak jarak dekat yang lalu. - Please verify the translation’s accuracy as the source string was updated after it was translated. + Dari menu pengaturan di dalam aplikasi, anda bisa berhenti menggunakan aplikasi ini dan menghapus data pengguna. アプリの設定からアプリの使用中止とユーザー情報の削除を行うことができます。 @@ -237,7 +235,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< You can check the number of your close contacts from the home screen. - Anda bisa memeriksa jumlah berapa kali berada dalam kontak jarak dekat dari layar beranda. + Anda bisa memeriksa berapa kali berada dalam kontak jarak dekat dari layar beranda. 最近の接触件数の確認へはホーム画面からも移動することができます。 @@ -257,7 +255,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< If you had close contact with a COVID-19 positive user - Jika anda pernah berada dalam jarak dekat dengan pengguna aplikasi ini yang teruji positif COVID-19 + Jika anda pernah mengalami berada dalam jarak dekat dengan pengguna aplikasi ini yang teruji positif COVID-19 陽性者との接触があった場合 @@ -282,7 +280,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Only randomly generated codes from device are used when sending notifications. No personal information is used. - Hanya memberikan kode perangkat yang dihasilkan secara acak untuk mengirimkan notifikasi. Tidak ada informasi pribadi yang digunakan. + Hanya kode acak perangkat yang digunakan untuk mengirimkan notifikasi. Tidak ada informasi pribadi yang digunakan. 通知される情報は端末の接触符号のみです。それ以外の、氏名など個人情報や位置情報が送られることはありません。 @@ -302,7 +300,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Use of Bluetooth - Menggunakan Bluetooth + Penggunaan Bluetooth Bluetoothによる接触の検知 @@ -322,7 +320,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Stop using and delete close contact records - Berhenti menggunakan dan menghapus rekaman kontak jarak dekat + Berhenti menggunakan dan menghapus riwayat kontak jarak dekat 使用を中止して過去14日間の接触履歴を消去 @@ -357,7 +355,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Please keep practicing 'New Lifestyle' recommended by the government. - Mohon selalu menerapkan 'Pola kewajaran hidup baru' yang disarankan oleh pemerintah. + Mohon selalu menerapkan 'Pola hidup wajar baru' yang disarankan oleh pemerintah. 引き続き「新しい生活様式」の実践をよろしくお願いいたします。 @@ -367,7 +365,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Thank you for registering your test results! - Terimakasih karena telah mendaftarkan hasil tes anda! + Terimakasih telah mendaftarkan hasil tes anda! 陽性のご登録をいただきありがとうございました @@ -412,7 +410,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Fill in your symptoms - Isi gejala-gejala yang anda alami + Isi dengan gejala-gejala yang anda alami 症状を入力 @@ -427,12 +425,12 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< If you have possible COVID-19 symptoms, contact healthcare organizations using the form below or by phone. Depending on the symptoms, you will be advised to take a COVID-19 test. - Jika anda mempunyai gejala-gejala terinfeksi COVID-19, hubungi institusi kesehatan dengan menggunakan telepon atau berkas di bawah ini. Berdasarkan gejala yang anda alami, anda disarankan untuk melakukan tes COVID-19. + Jika anda mempunyai gejala-gejala terinfeksi COVID-19, hubungi institusi kesehatan dengan menggunakan berkas di bawah ini atau telepon. Berdasarkan gejala yang anda alami, anda akan disarankan untuk melakukan tes COVID-19. 現在の症状などを、入力フォームまたはお電話にて、ご連絡ください。内容に応じて、帰国者・接触者外来等への受診を案内します。 Please take a screenshot of this screen. You may be asked to provide it during diagnosis. - Mohon ambil tangkapan gambar dari layar ini. Anda mungkin akan diminta selama proses diagnosa. + Mohon ambil tangkapan gambar dari layar ini. Anda mungkin akan diminta menunjukkannya selama proses diagnosa. 受診の際などに必要となる場合があるため、本画面のスクリーンショットの保存をお願いいたします。 @@ -452,7 +450,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< COVID-19 Information and Resources - Informasi dan sumber untuk COVID-19 + Informasi dan Sumber-sumber untuk COVID-19 新型コロナウイルス感染症対策サイト @@ -507,12 +505,12 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< All data is encrypted and saved locally on your smartphone. All data is automatically deleted after 14 days. Your movements are not tracked in any way by government agencies or third parties. - Semua data dienkripsi dan disimpan dalam perangkat anda. Semua data akan dihapus secara otomatis setelah 14 hari. Pergerakan anda tidak akan dilacak dengan cara apapun oleh lembaga pemerintah atau pihak ketiga. + Semua data dienkripsi dan disimpan dalam perangkat anda. Semua data akan dihapus secara otomatis setelah 14 hari. Pergerakan anda tidak akan dilacak dengan cara apapun oleh lembaga-lembaga pemerintah atau pihak ketiga. 接触の記録は、暗号化され、あなたのスマートフォンの中にのみ記録され、14日後に自動的に削除されます。行政機関や第三者が暗号化された情報を利用して接触歴を把握することはありません。 You can stop recording close contacts with other users anytime by changing app settings or deleting the app. - Anda bisa menghentikan perekaman kontak jarak dekat dengan pengguna lain setiap saat, dengan mengganti pengaturan dalam aplikasi, atau menghapus aplikasi. + Anda bisa menghentikan perekaman kontak jarak dekat dengan pengguna lain setiap saat, dengan mengganti pengaturan dalam aplikasi atau menghapus aplikasi. 接触の記録はいつでも止めることができます。アプリ内の設定を無効にするか、アプリを削除してください。 @@ -587,7 +585,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< The app recognizes close contacts between smartphones running this app. - Aplikasi ini mendeteksi kontak jarak dekat dengan perangkat lain yang menjalankan aplikasi ini di dalamnya. + Aplikasi ini mendeteksi kontak jarak dekat dengan perangkat lain yang menjalankan aplikasi ini. 本アプリをスマートフォンに設定した人どうしの接触を記録します。 @@ -622,7 +620,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Please turn on Exposure Notifications function and Bluetooth to start recording close contacts with other users. - Mohon aktifkan fungsi Notifikasi Paparan dan Bluetooth untuk mulai merekam kontak jarak dekat dari sesama pengguna aplikasi yang lain. + Mohon aktifkan fungsi Notifikasi Paparan dan Bluetooth untuk mulai merekam kontak jarak dekat dengan sesama pengguna aplikasi yang lain. 本アプリで接触検知をご利用いただくために、スマートフォンのBluetooth通信を有効にしてください。 @@ -652,27 +650,27 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< The processing number will be notified to your mobile phone number or e-mail address registered in the new coronavirus infectious disease information and management system (hereinafter "management system"). - Nomor kode proses akan diberitahukan ke nomor telepon atau e-mail yang terdaftar di sistem informasi dan tata kelola penyebaran coronavirus baru(selanjutnya akan disebut sebagai sistem manajemen). + Nomor kode proses akan diberitahukan ke nomor telepon atau e-mail anda yang terdaftar di sistem tata kelola dan informasi penyakit menular coronavirus baru(selanjutnya akan disebut sebagai "sistem manajemen"). 新型コロナウイルス感染症等情報把握・管理システム(以下「管理システム」)に登録されたあなたの携帯電話番号又はメールアドレスに、処理番号が通知されます。 When you enter this processing number into the terminal, the terminal will make an inquiry via the notification server to the management system as to whether the processing number has been issued to you. - Ketika nomor kode proses ini dimasukkan ke dalam perangkat, perangkat akan berhubungan dengan sistem manajemen untuk mengkonfirmasi apakah nomor kode telah dikirimkan kepada anda. + Ketika nomor kode proses ini dimasukkan ke dalam perangkat, perangkat akan berhubungan dengan sistem manajemen melalui server notifikasi untuk mengkonfirmasi apakah nomor kode proses telah dihasilkan untuk anda. あなたがこの処理番号を端末に入力することにより、端末から通知サーバーを経由して管理システムに対し、処理番号があなたに対して発行されたものか否かの照会が行われます。 The management system will respond to the notification server as to whether the transaction number referred to was issued to you. - Sistem manajemen akan merespon server notifikasi untuk mengkonfirmasi apakah nomor kode transaksi telah dikirimkan kepada anda. + Sistem manajemen akan merespon server notifikasi untuk mengkonfirmasi apakah nomor kode transaksi terkait dikirimkan untuk anda. 管理システムは、通知サーバーに対し、照会された処理番号があなたに対して発行されたものか否かについて回答します。 If you reply that the transaction number was issued to you, other users' terminals will be provided with the daily key recorded on your terminal. - Jika anda mengkonfirmasi bahwa nomor kode telah dikirimkan kepada anda, perangkat dari pengguna aplikasi yang lain dapat menyimpan kode kunci harian yang berada dalam perangkat anda. + Jika anda mengkonfirmasi bahwa nomor kode telah dikeluarkan untuk anda, perangkat dari pengguna aplikasi yang lain akan diberi kode kunci harian yang ada dalam perangkat anda. 処理番号があなたに対して発行されたものである旨の回答が行われた場合は、他の利用者の端末に、あなたの端末に記録された日次鍵が提供されます。 If you have been in contact with you within 14 days, you will know that you may have been contacted without any information that can identify you personally. - Jika anda pernah berada dalam jarak dekat dengan pengguna aplikasi yang positif COVID-19 dalam 14 hari terakhir, anda akan tahu bahwa anda pernah berdekatan dengannya dengan tanpa informasi yang dapat mengidentifikasi anda. + Jika anda pernah berada dalam jarak dekat dengan pengguna aplikasi yang positif COVID-19 dalam 14 hari terakhir, anda akan tahu bahwa anda pernah berdekatan dengannya tanpa informasi yang dapat mengidentifikasi anda. 14日以内にあなたと接触の状態となったことのある方は、あなた個人を識別可能な情報がない状態で、接触した可能性がある旨を知ることができます。 @@ -687,7 +685,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Consent to positive registration - Persetujuan bila terdaftar sebagai pengguna yang terruji positif COVID-19 + Persetujuan bila terdaftar sebagai pengguna yang teruji positif COVID-19 陽性登録への同意 @@ -720,8 +718,9 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. @@ -735,7 +734,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< If you want to disable it, you can change it from the app settings - Untuk menghentikan, lakukan pengubahan melalui menu Pengaturan dalam aplikasi + Untuk menghentikannya, lakukan pengubahan melalui menu Pengaturan di dalam aplikasi Notifications enabled @@ -751,12 +750,12 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Name: \r\n Contact: \r\n Content of inquiry (Please select a category from the following): 1. How the app works, 2. App settings, 3. Use of the app (notification etc.) ), 4. Others \r\n Inquiry text: \r\n - Nama: \r\n Kontak: \r\n Isi pertanyaan (Pilih dari salah satu kategori berikut): 1. Bagaimana cara aplikasi ini beroperaso, 2. Pengaturan aplikasi, 3. Penggunaan aplikasi (notifikasi dll.) ), 4. Lainnya \r\n Pertanyaan text: \r\n + Nama: \r\n Kontak: \r\n Isi pertanyaan (Pilih dari salah satu kategori berikut): 1. Bagaimana cara aplikasi ini beroperasi, 2. Pengaturan aplikasi, 3. Penggunaan aplikasi (notifikasi, dll.) ), 4. Lainnya \r\n teks pertanyaan: \r\n お名前:\r\nご連絡先:\r\nお問い合わせ内容(カテゴリを次の中からお選びください):1.アプリの仕組み、2.アプリの設定、 3.アプリの利用(通知など)、 4.その他\r\nお問い合わせ本文:\r\n Inquiries about contact confirmation app - Pertanyaan tentang aplikasi ini. + Pertanyaan tentang aplikasi konfirmasi paparan 接触確認アプリに関するお問い合わせ @@ -776,7 +775,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Exposure Notification is disabled. Open the terminal settings and turn on Exposure Notification. - Notifikasi Paparan COVID-19 dinonaktifkan. Buka menu pengaturan di perangkat dan aktifkan Notifikasi Paparan. + Notifikasi Paparan COVID-19 dinonaktifkan. Buka menu pengaturan perangkat dan aktifkan Notifikasi Paparan. Exposure Notification機能は無効の状態です。端末の設定を開いて、Exposure NotificationをONにしてください。 @@ -787,7 +786,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< COVID-19 Contact notification feature not approved. Please approve from each OS or re-approve after reinstalling the application. - Fungsi notifikasi kontak jarak dekat dari aplikasi Paparan COVID-19 tak diizinkan pengguna. Mohon perbolehkan fungsi tersebut dari menu pengaturan perangkat, atau beri izin ulang setelah install ulang aplikasi. + Fungsi notifikasi kontak jarak dekat dari aplikasi Paparan COVID-19 tak diizinkan pengguna. Mohon perbolehkan fungsi tersebut dari menu pengaturan perangkat, atau beri izin ulang setelah instal ulang aplikasi. COVID-19接触通知機能が承認されていません。各OSから承認するか、またはアプリの再インストール後に、再承認してください。 @@ -817,7 +816,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Cannot connect to registration center - Tidak tersambung ke pusat pendaftaran + Tidak bisa tersambung ke pusat pendaftaran センターに接続できません @@ -859,12 +858,12 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< In order to register positive records, it is necessary to enable COVID-19 contact log recording, please enable it from the application or OS settings. - Untuk mendaftarkan hasil tes positif, perekaman riwayat kontak jarak dekat perlu diaktifkan. Silakan mengaktifkannya dari menu pengaturan di aplikasi atau sistem operasi perangkat. + Untuk mendaftarkan hasil tes positif, perekaman riwayat kontak jarak dekat perlu diaktifkan. Silakan mengaktifkannya dari menu pengaturan di dalam aplikasi atau sistem operasi perangkat. 陽性記録の登録を行う為にCOVID-19接触のログ記録を有効にする必要があります、アプリかOSの設定から有効にしてください。 Enable COVID-19 contact logging - Aktifkan pencatatan kontak jarak dekat COVID-19 + Aktifkan perekaman kontak jarak dekat COVID-19 COVID-19接触のログ記録を有効にしてください diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ig.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ig.xlf index d25aea91..410ef555 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ig.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ig.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.is.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.is.xlf index b7de7242..ff89b9df 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.is.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.is.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.it.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.it.xlf index 5c5a9ebe..40ac0c71 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.it.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.it.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ja.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ja.xlf index 9389fe2f..00f00a35 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ja.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ja.xlf @@ -717,8 +717,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/ja/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/ja/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.jv-Latn.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.jv-Latn.xlf index 785ce19e..9a934c98 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.jv-Latn.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.jv-Latn.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ka.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ka.xlf index ca3d302a..c084b2d6 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ka.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ka.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.kk.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.kk.xlf index 966a3310..00c787a3 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.kk.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.kk.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.km.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.km.xlf index f2bd92d8..531ca810 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.km.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.km.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.kn.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.kn.xlf index ea964534..fe8db4ff 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.kn.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.kn.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ko.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ko.xlf index 23ff1406..d1f51b5e 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ko.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ko.xlf @@ -721,8 +721,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ku-Arab.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ku-Arab.xlf index dd274fd8..01780f56 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ku-Arab.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ku-Arab.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ky.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ky.xlf index f0fbcf22..c6fe61ec 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ky.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ky.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.la.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.la.xlf index d877e080..ee5b24f1 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.la.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.la.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lb.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lb.xlf index e0079345..c8dbd686 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lb.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lb.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lo.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lo.xlf index c1b37534..420b0230 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lo.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lo.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lt.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lt.xlf index ce4819b0..28eb3d3c 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lt.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lt.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lv.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lv.xlf index cbe07a4f..0f78586f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lv.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.lv.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mg.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mg.xlf index 963b3eea..b1daa72f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mg.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mg.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mi.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mi.xlf index a023d7bd..bbb4569f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mi.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mi.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mk.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mk.xlf index 56562c36..693d46ca 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mk.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mk.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ml.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ml.xlf index 6e60a517..05ee486a 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ml.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ml.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mn-Cyrl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mn-Cyrl.xlf index 73894879..df74989e 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mn-Cyrl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mn-Cyrl.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mr.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mr.xlf index cb61106c..bdb36441 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mr.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mr.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ms.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ms.xlf index 52ebe2d0..c5e33c99 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ms.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ms.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mt.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mt.xlf index 6d4639e8..cd2ec51a 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mt.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.mt.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.my.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.my.xlf index 854616a8..bf0a0fc4 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.my.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.my.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.nb.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.nb.xlf index 06a98a1d..c08663b7 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.nb.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.nb.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ne.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ne.xlf index fc16b035..8434f847 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ne.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ne.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.nl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.nl.xlf index 1f054507..bbdd26ee 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.nl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.nl.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ny.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ny.xlf index 68c05ea4..64d1d040 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ny.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ny.xlf @@ -736,7 +736,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json https://covid19radarjpnprod.z11.web: diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.or.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.or.xlf index 3e685119..cccafa39 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.or.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.or.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pa-Guru.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pa-Guru.xlf index ec99364b..17d6bca3 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pa-Guru.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pa-Guru.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pl.xlf index d68af02b..5dab0b50 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pl.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ps.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ps.xlf index 5ccad927..993496a0 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ps.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ps.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pt.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pt.xlf index 34daf226..b40a72f0 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pt.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.pt.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ro.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ro.xlf index 0bc13335..39afe59f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ro.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ro.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ru.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ru.xlf index 5f5edf50..3603d2e5 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ru.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ru.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.rw.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.rw.xlf index 5123b95c..f8de4d6e 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.rw.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.rw.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sd-Deva.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sd-Deva.xlf index 425b9602..4c036b5b 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sd-Deva.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sd-Deva.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.si.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.si.xlf index 2ec8d0d5..dce65c03 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.si.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.si.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sk.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sk.xlf index f49c1652..1edf153c 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sk.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sk.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sl.xlf index d585885a..c259990a 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sl.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sm.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sm.xlf index aee78f12..d60114fa 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sm.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sm.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sn-Latn.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sn-Latn.xlf index ddeda472..6026a516 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sn-Latn.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sn-Latn.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.so.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.so.xlf index d597220a..8c89858e 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.so.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.so.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sq.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sq.xlf index a598f7f0..afe41c22 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sq.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sq.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr-Cyrl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr-Cyrl.xlf index cfcefe4c..4270f5ae 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr-Cyrl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr-Cyrl.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr-Latn.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr-Latn.xlf index b117507d..664902d0 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr-Latn.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr-Latn.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr.xlf index e142e457..eaee6b5f 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sr.xlf @@ -736,7 +736,7 @@ хттпс://цовид19радарјпнпрод.з11.веб.цоре.виндовс.нет/ен/индек.хтмл - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json хттпс://цовид19радарјпнпрод.з11.веб.цоре.виндовс.нет/ен/цхатбот4.хтмл diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.st.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.st.xlf index cf34a0ca..940ff250 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.st.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.st.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.su.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.su.xlf index 780ff560..db9a619b 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.su.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.su.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sv.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sv.xlf index b000f4fd..7b5626c8 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sv.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sv.xlf @@ -744,8 +744,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sw.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sw.xlf index e1d8f431..fddfc211 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sw.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.sw.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ta.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ta.xlf index b4fa948a..cab07274 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ta.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ta.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.te.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.te.xlf index 38cc78ed..3439aa57 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.te.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.te.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tg-Cyrl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tg-Cyrl.xlf index 901cc4e2..04df52b9 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tg-Cyrl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tg-Cyrl.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.th.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.th.xlf index ee56866c..0296eb0e 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.th.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.th.xlf @@ -719,8 +719,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tk.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tk.xlf index 0d067469..0504c5a4 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tk.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tk.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tl.xlf index 801db225..58f7bc8c 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tl.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tr.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tr.xlf index ad422177..147e2818 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tr.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tr.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tt.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tt.xlf index 3bcd0373..6db0833b 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tt.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.tt.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ug.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ug.xlf index 8f670ae1..c11db7bc 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ug.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ug.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.uk.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.uk.xlf index 90545315..9ab62381 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.uk.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.uk.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ur.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ur.xlf index 319c47ec..5718e117 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ur.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.ur.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.uz-Cyrl.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.uz-Cyrl.xlf index 7bbe1f21..c9a10059 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.uz-Cyrl.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.uz-Cyrl.xlf @@ -736,8 +736,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/uz/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/uz/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.vi.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.vi.xlf index 214f4199..ba84172b 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.vi.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.vi.xlf @@ -737,8 +737,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.xh.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.xh.xlf index 5ea1fe1a..5ae05bd5 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.xh.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.xh.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.yi.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.yi.xlf index b1cf9507..a17a319b 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.yi.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.yi.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.yo.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.yo.xlf index d87bdb8f..1c4b280e 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.yo.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.yo.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zh-Hans.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zh-Hans.xlf index ea19fb02..4e5fddae 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zh-Hans.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zh-Hans.xlf @@ -224,7 +224,7 @@ From app settings, you can stop using the app and delete user data. - 在應用程序設置中,您可以停止使用該應用程序並刪除用戶數據。 + 您可以在应用设置中选择停止使用该应用并删除用户数据。 アプリの設定からアプリの使用中止とユーザー情報の削除を行うことができます。 @@ -717,8 +717,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/zh-hans/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/zh-hans/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zh-Hant.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zh-Hant.xlf index f01d7d57..bcd62b31 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zh-Hant.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zh-Hant.xlf @@ -735,8 +735,9 @@ https://covid19radarjpnprod.z11.web.core.windows.net/zh-hans/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/zh-hans/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + Please verify the translation’s accuracy as the source string was updated after it was translated. It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zu.xlf b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zu.xlf index b2c3cdb8..dbab3a3a 100644 --- a/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zu.xlf +++ b/Covid19Radar/Covid19Radar/MultilingualResources/Covid19Radar.zu.xlf @@ -717,8 +717,8 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.Designer.cs b/Covid19Radar/Covid19Radar/Resources/AppResources.Designer.cs index 9b19cc28..2f67a03a 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.Designer.cs +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.Designer.cs @@ -1627,7 +1627,7 @@ internal static string UrlContactedForm { } /// - /// https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html に類似しているローカライズされた文字列を検索します。 + /// https://covid19radarjpnprod.z11.web.core.windows.net/phone.json に類似しているローカライズされた文字列を検索します。 /// internal static string UrlContactedPhone { get { diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.af.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.af.resx index 2d3e1932..f92c0d3d 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.af.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.af.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Dit is moontlik jy het in die nabyheid van 'n gebruiker wat positief getoets vir COVID-19. Tik vir meer besonderhede. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ar.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ar.resx index 4b027aa7..d3327e27 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ar.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ar.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json من الممكن أنك كنت على مقربة من مستخدم تم اختباره إيجابيًا لـ COVID-19. انقر للحصول على مزيد من التفاصيل. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.bg.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.bg.resx index 6f14c186..11cfa6ed 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.bg.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.bg.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Възможно е да сте били в непосредствена близост до потребител, който е положителен за COVID-19. Докоснете за повече подробности. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.bn.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.bn.resx index df0bbf4d..28b5b788 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.bn.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.bn.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json এটা সম্ভব যে আপনি একজন ব্যবহারকারীর কাছাকাছি ছিলেন যিনি COVID-19 এর জন্য ইতিবাচক পরীক্ষা করেছেন। আরও বিস্তারিত জানার জন্য ট্যাপ করুন। diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ca.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ca.resx index b9ce4183..d9da5ade 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ca.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ca.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json És possible que hagi estat en estreta proximitat a un usuari que va provar positiu per COVID-19. Toqueu per obtenir-ne més detalls. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.cs.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.cs.resx index 46b1524e..b14e669a 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.cs.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.cs.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Je možné, že jste byli v těsné blízkosti uživatele, který byl pozitivně testován na COVID-19. Klepnutím zobrazíte další podrobnosti. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.cy.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.cy.resx index ecbfc3b3..c01fc39c 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.cy.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.cy.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Mae'n bosibl eich bod wedi bod yn agos at ddefnyddiwr a brofodd yn bositif ar gyfer COVID-19. Tap am fwy o fanylion. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.da.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.da.resx index 04473027..2c8622e1 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.da.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.da.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Det er muligt, at du har været tæt på en bruger, der blev testet positiv for COVID-19. Tryk for at få flere oplysninger. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.de.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.de.resx index 1ed03a5d..9914eff7 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.de.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.de.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Es besteht die Möglichkeit, dass Sie sich in der Nähe eines Nutzers befunden haben, der positiv auf COVID-19 getestet wurde. Für weitere Einzelheiten klicken Sie hier. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.el.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.el.resx index 402a4684..c000773c 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.el.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.el.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Είναι πιθανό να ήσασταν κοντά σε ένα χρήστη που βρέθηκε θετικός για COVID-19. Πατήστε για περισσότερες λεπτομέρειες. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.en.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.en.resx index cda3c1a0..9d2f30af 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.en.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.en.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.es.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.es.resx index e5d60258..8b23d6ef 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.es.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.es.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Es posible que haya estado muy cerca de un usuario que dio positivo para COVID-19. Toque para obtener más detalles. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.et.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.et.resx index 34894f63..b0b705fd 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.et.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.et.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json On võimalik, et olete olnud COVID-19 suhtes positiivse tulemuse saanud kasutaja vahetus läheduses. Puudutage lisateabe saamiseks ikooni .. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.fa.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.fa.resx index 5899bcfc..c296547a 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.fa.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.fa.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json ممکن است شما را در مجاورت نزدیک به یک کاربر که آزمایش مثبت برای COVID-19 بوده است. برای جزئیات بیشتر ضربه بزنید diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.fi.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.fi.resx index dbe64ea7..288fa664 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.fi.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.fi.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json On mahdollista, että olet ollut lähellä käyttäjää, joka positiivisesti COVID-19. Saat lisätietoja napauttamalla. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.fil.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.fil.resx index b501a6b3..13bc2ead 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.fil.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.fil.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Posible na ikaw ay malapit sa isang user na sinubukan ng positibo para sa COVID-19. Tapikin ang para sa karagdagang detalye. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.fr.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.fr.resx index fddc482b..761b6f7b 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.fr.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.fr.resx @@ -442,7 +442,7 @@ 通知をご利用いただくために - W!!Mëñµ 表!!W + Menu メニュー @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Il est possible que vous ayez été à proximité d’un utilisateur qui a été testé positif pour COVID-19. Appuyez pour plus de détails. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ga.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ga.resx index 53b350a6..a89a23b4 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ga.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ga.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Is féidir go raibh tú gar d'úsáideoir a thástáil dearfach do COVID-19. Tapáil le haghaidh tuilleadh sonraí. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.gu.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.gu.resx index 8f44b295..6f6a400f 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.gu.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.gu.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json શક્ય છે કે તમે કોઈ વપરાશકર્તાની નજીક હોવ કે જેમણે COVID-19 માટે પોઝિટિવ ટેસ્ટ કર્યો હોય. વધુ વિગતો માટે ટેપ કરો. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.he.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.he.resx index db8950c9..954cf2aa 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.he.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.he.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json ייתכן שהיית בקרבת משתמש שנבדק חיובי עבור COVID-19. הקש לקבלת פרטים נוספים. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.hi.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.hi.resx index e59a3a57..28a31f36 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.hi.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.hi.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json यह संभव है कि आप एक उपयोगकर्ता के करीब निकटता में रहे हैं, जिसने COVID-19 के लिए सकारात्मक परीक्षण किया है। अधिक जानकारी के लिए टैप करें। diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.hr.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.hr.resx index 43cb6223..bc290c22 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.hr.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.hr.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Moguće je da ste bili u neposrednoj blizini korisnika koji je pozitivan na COVID-19. Dodirnite za više detalja. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.hu.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.hu.resx index 1aeecc46..fb3280d3 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.hu.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.hu.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Lehetséges, hogy olyan felhasználó közvetlen közelében volt, aki pozitív eredményt adott COVID-19-re. További részletekért koppintson ide. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.id.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.id.resx index 5964419a..0c028101 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.id.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.id.resx @@ -58,7 +58,7 @@ Tab How to use - Tak ada paparan/kontak jarak dekat dengan pengguna positif yang teridentifikasi + Tak ada paparan/kontak jarak dekat yang teridentifikasi If not found exposures data @@ -91,14 +91,14 @@ Menghapus - Bagikan aplikasi ke keluarga atau teman + Ajak keluarga dan teman untuk berpartisipasi 本アプリを広めましょう Bagikan - Berbagi informasi dan memberi notifikasi hasil uji positif secara anonim ke pengguna lain + Berbagi informasi hasil uji positif dan memberi notifikasi secara anonim ke pengguna lain Button NotifyOtherPage @@ -109,7 +109,7 @@ Kebijakan Privasi - Menunggu pendaftaran + Menunggu untuk mendaftar Apakah anda benar-benar ingin me-reset semua data? @@ -155,11 +155,11 @@ 感染していると判定されたら - Berhenti / hapus data paparan/kontak jarak dekat yang lalu + Berhenti / hapus data riwayat paparan/kontak jarak dekat 記録の停止/削除 - Ketika aplikasi ini dijalankan, setiap perangkat akan menghasilkan kode acak. Tak ada informasi pribadi atau lokasi, termasuk data GPS, yang kumpulkan. + Ketika aplikasi ini dijalankan, setiap perangkat akan menghasilkan kode acak. Tak ada informasi pribadi dan lokasi, termasuk data GPS, yang kumpulkan. アプリを実行した際に、各スマートフォンで接触符号を生成して持ちます。氏名・電話番号などの個人情報やGPSなどスマートフォンの位置情報を使うことはなく、記録されることもありません。 @@ -167,7 +167,7 @@ 記録される接触の条件 - Berada dalam jarak dekat dengan pengguna lain aplikasi ini (dalam jarak 1 meter selama 15 menit atau lebih) dicatat sebagai "kontak jarak dekat". + Jika perangkat yang terpasang aplikasi ini berada dalam jarak dekat (dalam jarak 1 meter selama 15 menit atau lebih), maka akan dicatat sebagai "kontak jarak dekat". 1メートル以内、15分以上の他のアプリユーザーとの接触は「接触」として記録されます。 @@ -175,8 +175,7 @@ 接触情報の記録 - Perangkat dalam jarak dekat saling bertukar kode acak masing-masing. Informasi ini tidak akan digunakan sampai salah satu pengguna perangkat tersebut mendaftarkan hasil tes positif COVID-19 ke dalam aplikasi ini. Rekaman data kontak jarak dekat akan dihapus setelah 14 hari. -Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda. + Perangkat dalam jarak dekat saling bertukar kode acak masing-masing. Informasi ini tidak akan digunakan sampai salah satu pengguna perangkat tersebut mendaftarkan hasil tes positif COVID-19 di dalam aplikasi ini. Riwayat kontak jarak dekat akan dihapus setelah 14 hari. Catatan: kode akan berubah secara berkala untuk melindungi privasi anda. このとき、接触した相手の接触符号の記録をアプリに行います。どちらかの利用者が陽性の登録を行うまでは接触の情報は利用されません。接触の履歴は14日後に消去されます。 ※接触符号は定期的に変わります。 @@ -184,7 +183,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< アプリの設定へ - Dari menu pengaturan di dalam aplikasi, anda bisa mengaktifkan/menonaktifkan Bluetooth dan notifikasi, berhenti menggunakan aplikasi ini, dan menghapus rekaman data kontak jarak dekat yang lalu. + Dari menu pengaturan di dalam aplikasi, anda bisa berhenti menggunakan aplikasi ini dan menghapus data pengguna. アプリの設定からアプリの使用中止とユーザー情報の削除を行うことができます。 @@ -192,7 +191,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 接触した人の中に新型コロナウイルスの陽性登録された人がいた場合、スマートフォンにプッシュ通知が届きます。 - Anda bisa memeriksa jumlah berapa kali berada dalam kontak jarak dekat dari layar beranda. + Anda bisa memeriksa berapa kali berada dalam kontak jarak dekat dari layar beranda. 最近の接触件数の確認へはホーム画面からも移動することができます。 @@ -208,7 +207,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< ホーム画面 - Jika anda pernah berada dalam jarak dekat dengan pengguna aplikasi ini yang teruji positif COVID-19 + Jika anda pernah mengalami berada dalam jarak dekat dengan pengguna aplikasi ini yang teruji positif COVID-19 陽性者との接触があった場合 @@ -228,7 +227,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< あなたと14日以内に接触した人のスマホアプリに通知が届きます。(1m以内、15分以上) - Hanya memberikan kode perangkat yang dihasilkan secara acak untuk mengirimkan notifikasi. Tidak ada informasi pribadi yang digunakan. + Hanya kode acak perangkat yang digunakan untuk mengirimkan notifikasi. Tidak ada informasi pribadi yang digunakan. 通知される情報は端末の接触符号のみです。それ以外の、氏名など個人情報や位置情報が送られることはありません。 @@ -244,7 +243,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 接触の検出 - Menggunakan Bluetooth + Penggunaan Bluetooth Bluetoothによる接触の検知 @@ -260,7 +259,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< アプリの使用中止 - Berhenti menggunakan dan menghapus rekaman kontak jarak dekat + Berhenti menggunakan dan menghapus riwayat kontak jarak dekat 使用を中止して過去14日間の接触履歴を消去 @@ -288,7 +287,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 陽性者との接触は確認されませんでした - Mohon selalu menerapkan 'Pola kewajaran hidup baru' yang disarankan oleh pemerintah. + Mohon selalu menerapkan 'Pola hidup wajar baru' yang disarankan oleh pemerintah. 引き続き「新しい生活様式」の実践をよろしくお願いいたします。 @@ -296,7 +295,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< アプリを周りの人に知らせる - Terimakasih karena telah mendaftarkan hasil tes anda! + Terimakasih telah mendaftarkan hasil tes anda! 陽性のご登録をいただきありがとうございました @@ -332,7 +331,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 陽性者との接触一覧 - Isi gejala-gejala yang anda alami + Isi dengan gejala-gejala yang anda alami 症状を入力 @@ -344,11 +343,11 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< - Jika anda mempunyai gejala-gejala terinfeksi COVID-19, hubungi institusi kesehatan dengan menggunakan telepon atau berkas di bawah ini. Berdasarkan gejala yang anda alami, anda disarankan untuk melakukan tes COVID-19. + Jika anda mempunyai gejala-gejala terinfeksi COVID-19, hubungi institusi kesehatan dengan menggunakan berkas di bawah ini atau telepon. Berdasarkan gejala yang anda alami, anda akan disarankan untuk melakukan tes COVID-19. 現在の症状などを、入力フォームまたはお電話にて、ご連絡ください。内容に応じて、帰国者・接触者外来等への受診を案内します。 - Mohon ambil tangkapan gambar dari layar ini. Anda mungkin akan diminta selama proses diagnosa. + Mohon ambil tangkapan gambar dari layar ini. Anda mungkin akan diminta menunjukkannya selama proses diagnosa. 受診の際などに必要となる場合があるため、本画面のスクリーンショットの保存をお願いいたします。 @@ -364,7 +363,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 9:00~17:30(土・日・祝日・年末年始を除く) - Informasi dan sumber untuk COVID-19 + Informasi dan Sumber-sumber untuk COVID-19 新型コロナウイルス感染症対策サイト @@ -408,11 +407,11 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 氏名・電話番号などの個人情報や、GPSなどスマートフォンの位置情報を使うことはなく、記録されることもありません。 - Semua data dienkripsi dan disimpan dalam perangkat anda. Semua data akan dihapus secara otomatis setelah 14 hari. Pergerakan anda tidak akan dilacak dengan cara apapun oleh lembaga pemerintah atau pihak ketiga. + Semua data dienkripsi dan disimpan dalam perangkat anda. Semua data akan dihapus secara otomatis setelah 14 hari. Pergerakan anda tidak akan dilacak dengan cara apapun oleh lembaga-lembaga pemerintah atau pihak ketiga. 接触の記録は、暗号化され、あなたのスマートフォンの中にのみ記録され、14日後に自動的に削除されます。行政機関や第三者が暗号化された情報を利用して接触歴を把握することはありません。 - Anda bisa menghentikan perekaman kontak jarak dekat dengan pengguna lain setiap saat, dengan mengganti pengaturan dalam aplikasi, atau menghapus aplikasi. + Anda bisa menghentikan perekaman kontak jarak dekat dengan pengguna lain setiap saat, dengan mengganti pengaturan dalam aplikasi atau menghapus aplikasi. 接触の記録はいつでも止めることができます。アプリ内の設定を無効にするか、アプリを削除してください。 @@ -472,7 +471,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 次へ - Aplikasi ini mendeteksi kontak jarak dekat dengan perangkat lain yang menjalankan aplikasi ini di dalamnya. + Aplikasi ini mendeteksi kontak jarak dekat dengan perangkat lain yang menjalankan aplikasi ini. 本アプリをスマートフォンに設定した人どうしの接触を記録します。 @@ -500,7 +499,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< あとで設定する - Mohon aktifkan fungsi Notifikasi Paparan dan Bluetooth untuk mulai merekam kontak jarak dekat dari sesama pengguna aplikasi yang lain. + Mohon aktifkan fungsi Notifikasi Paparan dan Bluetooth untuk mulai merekam kontak jarak dekat dengan sesama pengguna aplikasi yang lain. 本アプリで接触検知をご利用いただくために、スマートフォンのBluetooth通信を有効にしてください。 @@ -524,23 +523,23 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 8桁の処理番号を入力してください - Nomor kode proses akan diberitahukan ke nomor telepon atau e-mail yang terdaftar di sistem informasi dan tata kelola penyebaran coronavirus baru(selanjutnya akan disebut sebagai sistem manajemen). + Nomor kode proses akan diberitahukan ke nomor telepon atau e-mail anda yang terdaftar di sistem tata kelola dan informasi penyakit menular coronavirus baru(selanjutnya akan disebut sebagai "sistem manajemen"). 新型コロナウイルス感染症等情報把握・管理システム(以下「管理システム」)に登録されたあなたの携帯電話番号又はメールアドレスに、処理番号が通知されます。 - Ketika nomor kode proses ini dimasukkan ke dalam perangkat, perangkat akan berhubungan dengan sistem manajemen untuk mengkonfirmasi apakah nomor kode telah dikirimkan kepada anda. + Ketika nomor kode proses ini dimasukkan ke dalam perangkat, perangkat akan berhubungan dengan sistem manajemen melalui server notifikasi untuk mengkonfirmasi apakah nomor kode proses telah dihasilkan untuk anda. あなたがこの処理番号を端末に入力することにより、端末から通知サーバーを経由して管理システムに対し、処理番号があなたに対して発行されたものか否かの照会が行われます。 - Sistem manajemen akan merespon server notifikasi untuk mengkonfirmasi apakah nomor kode transaksi telah dikirimkan kepada anda. + Sistem manajemen akan merespon server notifikasi untuk mengkonfirmasi apakah nomor kode transaksi terkait dikirimkan untuk anda. 管理システムは、通知サーバーに対し、照会された処理番号があなたに対して発行されたものか否かについて回答します。 - Jika anda mengkonfirmasi bahwa nomor kode telah dikirimkan kepada anda, perangkat dari pengguna aplikasi yang lain dapat menyimpan kode kunci harian yang berada dalam perangkat anda. + Jika anda mengkonfirmasi bahwa nomor kode telah dikeluarkan untuk anda, perangkat dari pengguna aplikasi yang lain akan diberi kode kunci harian yang ada dalam perangkat anda. 処理番号があなたに対して発行されたものである旨の回答が行われた場合は、他の利用者の端末に、あなたの端末に記録された日次鍵が提供されます。 - Jika anda pernah berada dalam jarak dekat dengan pengguna aplikasi yang positif COVID-19 dalam 14 hari terakhir, anda akan tahu bahwa anda pernah berdekatan dengannya dengan tanpa informasi yang dapat mengidentifikasi anda. + Jika anda pernah berada dalam jarak dekat dengan pengguna aplikasi yang positif COVID-19 dalam 14 hari terakhir, anda akan tahu bahwa anda pernah berdekatan dengannya tanpa informasi yang dapat mengidentifikasi anda. 14日以内にあなたと接触の状態となったことのある方は、あなた個人を識別可能な情報がない状態で、接触した可能性がある旨を知ることができます。 @@ -552,7 +551,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 陽性登録への同意 - Persetujuan bila terdaftar sebagai pengguna yang terruji positif COVID-19 + Persetujuan bila terdaftar sebagai pengguna yang teruji positif COVID-19 陽性登録への同意 @@ -579,7 +578,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Ada kemungkinan anda pernah berada dalam jarak dekat dengan sesama pengguna aplikasi yang telah teruji positif COVID-19. Ketuk bagian ini untuk informasi lanjutan. @@ -590,7 +589,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Possible COVID-19 Exposure - Untuk menghentikan, lakukan pengubahan melalui menu Pengaturan dalam aplikasi + Untuk menghentikannya, lakukan pengubahan melalui menu Pengaturan di dalam aplikasi Notifikasi diaktifkan @@ -602,11 +601,11 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< Tanya Jawab bagi pengguna - Nama: \r\n Kontak: \r\n Isi pertanyaan (Pilih dari salah satu kategori berikut): 1. Bagaimana cara aplikasi ini beroperaso, 2. Pengaturan aplikasi, 3. Penggunaan aplikasi (notifikasi dll.) ), 4. Lainnya \r\n Pertanyaan text: \r\n + Nama: \r\n Kontak: \r\n Isi pertanyaan (Pilih dari salah satu kategori berikut): 1. Bagaimana cara aplikasi ini beroperasi, 2. Pengaturan aplikasi, 3. Penggunaan aplikasi (notifikasi, dll.) ), 4. Lainnya \r\n teks pertanyaan: \r\n お名前:\r\nご連絡先:\r\nお問い合わせ内容(カテゴリを次の中からお選びください):1.アプリの仕組み、2.アプリの設定、 3.アプリの利用(通知など)、 4.その他\r\nお問い合わせ本文:\r\n - Pertanyaan tentang aplikasi ini. + Pertanyaan tentang aplikasi konfirmasi paparan 接触確認アプリに関するお問い合わせ @@ -622,7 +621,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< BluetoothがOffになっています。Bluetoothを有効にしてください。 - Notifikasi Paparan COVID-19 dinonaktifkan. Buka menu pengaturan di perangkat dan aktifkan Notifikasi Paparan. + Notifikasi Paparan COVID-19 dinonaktifkan. Buka menu pengaturan perangkat dan aktifkan Notifikasi Paparan. Exposure Notification機能は無効の状態です。端末の設定を開いて、Exposure NotificationをONにしてください。 @@ -631,7 +630,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 利用規約に同意する必要があります。 - Fungsi notifikasi kontak jarak dekat dari aplikasi Paparan COVID-19 tak diizinkan pengguna. Mohon perbolehkan fungsi tersebut dari menu pengaturan perangkat, atau beri izin ulang setelah install ulang aplikasi. + Fungsi notifikasi kontak jarak dekat dari aplikasi Paparan COVID-19 tak diizinkan pengguna. Mohon perbolehkan fungsi tersebut dari menu pengaturan perangkat, atau beri izin ulang setelah instal ulang aplikasi. COVID-19接触通知機能が承認されていません。各OSから承認するか、またはアプリの再インストール後に、再承認してください。 @@ -655,7 +654,7 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< アプリで入力された処理番号が違います - Tidak tersambung ke pusat pendaftaran + Tidak bisa tersambung ke pusat pendaftaran センターに接続できません @@ -689,11 +688,11 @@ Catatan: kode kontak akan berubah secara berkala untuk melindungi privasi anda.< 処理番号のフォーマットが一致していません - Untuk mendaftarkan hasil tes positif, perekaman riwayat kontak jarak dekat perlu diaktifkan. Silakan mengaktifkannya dari menu pengaturan di aplikasi atau sistem operasi perangkat. + Untuk mendaftarkan hasil tes positif, perekaman riwayat kontak jarak dekat perlu diaktifkan. Silakan mengaktifkannya dari menu pengaturan di dalam aplikasi atau sistem operasi perangkat. 陽性記録の登録を行う為にCOVID-19接触のログ記録を有効にする必要があります、アプリかOSの設定から有効にしてください。 - Aktifkan pencatatan kontak jarak dekat COVID-19 + Aktifkan perekaman kontak jarak dekat COVID-19 COVID-19接触のログ記録を有効にしてください diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.is.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.is.resx index 3ff02019..fc981db3 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.is.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.is.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/hr/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/hr/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Moguće je da ste bili u neposrednoj blizini s korisnikom koji je pozitivno testirao COVID-19. Dodirnite za više detalja. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.it.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.it.resx index ba98e658..605332cc 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.it.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.it.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json È possibile che tu sia stato in prossimità di un utente che è risultato positivo al COVID-19. Tocca per maggiori dettagli. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ja.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ja.resx index 8b8c6da5..8680049e 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ja.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ja.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/ja/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/ja/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json 新型コロナウイルス陽性登録者と接触した可能性があります。詳細はこちら。 diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.kn.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.kn.resx index 42dd3096..1d9c7cb8 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.kn.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.kn.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json COVID-19 ಗೆ ಧನಾತ್ಮಕ ಪರೀಕ್ಷೆ ಮಾಡಿದ ಬಳಕೆದಾರನಿಗೆ ನೀವು ಹತ್ತಿರವಾಗಿದ್ದೀರಿ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗೆ ಟ್ಯಾಪ್ ಮಾಡಿ. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ko.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ko.resx index 46e5383d..63835e65 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ko.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ko.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json COVID-19에 대해 양성 반응을 보인 사용자와 가까운 거리에 있을 수 있습니다. 자세한 내용을 보려면 누릅니다. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.lt.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.lt.resx index 2c518593..e3bb21eb 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.lt.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.lt.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Gali būti, kad buvote arti vartotojo, kuris buvo teigiamas COVID-19. Palieskite, jei norite gauti daugiau informacijos. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.lv.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.lv.resx index 8d857b18..28fb81e6 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.lv.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.lv.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Tas ir iespējams, jums ir bijis tuvu lietotājam, kurš testē pozitīvu COVID-19. Pieskarieties, lai iegūtu plašāku informāciju. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.mg.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.mg.resx index e7453d07..65c551de 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.mg.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.mg.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Azo tanterahina ny akaiky akaiky ny mpampiasa iray izay nosedraina tsara ho an' ny COVID-19. Kasiho ireo antsipirian-javatra fanampiny. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.mi.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.mi.resx index 6d4b3947..cd5a7120 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.mi.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.mi.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Tērā pea kei te kati koe i te tatanga ki tētahi kaiwhakamahi e whakamātautauhia tonu ana mo te COVID. Pato mō ētahi atu taipitopito. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ml.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ml.resx index 46575c48..6521c6ea 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ml.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ml.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json COVID-19-നായി പോസിറ്റീവ് ടെസ്റ്റ് ചെയ്ത ഒരു ഉപയോക്താവിനോട് നിങ്ങൾ അടുത്താണ് എന്ന് സാധ്യതയുണ്ട്. കൂടുതൽ വിവരങ്ങൾക്ക് ടാപ്പുചെയ്യുക. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.mr.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.mr.resx index 9f56a4e2..f6d4da8d 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.mr.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.mr.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json सीओव्हीआयडी-१९ साठी पॉझिटीव्ह चाचणी करणाऱ्या वापरकर्त्याच्या जवळ तुम्ही असू शकता. अधिक तपशीलासाठी टॅप करा. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ms.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ms.resx index 40d70381..0cafa8f2 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ms.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ms.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Ada kemungkinan anda telah berdekatan dengan pengguna yang diuji positif untuk COVID-19. Ketuk untuk maklumat lanjut. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.mt.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.mt.resx index 4d3d467b..5725da28 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.mt.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.mt.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Huwa possibbli li kont qrib ħafna ta 'utent li ttestja pożittiv għal COVID-19. Taptap għal aktar dettalji. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.nb.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.nb.resx index 6e474e48..8761b67d 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.nb.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.nb.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Det er mulig at du har vært i nærheten av en bruker som testet positivt for COVID-19. Trykk for mer informasjon. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.nl.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.nl.resx index e5907522..9e3804b1 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.nl.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.nl.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Het is mogelijk dat u in de nabijheid van een gebruiker die positief getest voor COVID-19. Tik op voor meer informatie. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.pl.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.pl.resx index 2a7dd36a..cd59dc61 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.pl.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.pl.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Możliwe, że byłeś w pobliżu użytkownika, który uzyskał wynik pozytywny dla COVID-19. Dotknij, aby uzyskać więcej informacji. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.pt.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.pt.resx index a8743864..2d067194 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.pt.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.pt.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json É possível que você tenha estado perto de um usuário que testou positivo para COVID-19. Toque para mais detalhes. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.resx index c2581c56..aa7bd06e 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.resx @@ -682,7 +682,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json It is possible you have been in close proximity to a user who tested positive for COVID-19. Tap for more details. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ro.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ro.resx index 0fd85b3a..42526dc1 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ro.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ro.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Este posibil să fi fost în imediata apropiere a unui utilizator care a testat pozitiv pentru COVID-19. Atingeți pentru mai multe detalii. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ru.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ru.resx index 9925deef..0c7ae6ff 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ru.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ru.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Возможно, вы были в непосредственной близости от пользователя, который дал положительный результат на COVID-19. Нажмите для получения более подробной информации. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.sk.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.sk.resx index 963c4e9d..3c7e190d 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.sk.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.sk.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Je možné, že ste boli v tesnej blízkosti užívateľa, ktorý testoval pozitívne na COVID-19. Ďalšie podrobnosti získate ťuknutím. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.sl.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.sl.resx index f2ce6494..21fb22da 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.sl.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.sl.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Možno je, da ste bili v neposredni bližini uporabnika, ki je pozitivno testiral za COVID-19. Tapnite za več podrobnosti. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.sr-Cyrl.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.sr-Cyrl.resx index 1d23f194..37c2298a 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.sr-Cyrl.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.sr-Cyrl.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Могуће је да сте близу близине кориснику који је био позитиван тестиран за КОВИД-19. Додирните за више детаља. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.sr-Latn.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.sr-Latn.resx index 2b1fef7d..6c1d15f1 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.sr-Latn.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.sr-Latn.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Moguće je da ste blizu blizine korisniku koji je bio pozitivan testiran za KOVID-19. Dodirnite za više detalja. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.sv.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.sv.resx index 1906d902..ded769a4 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.sv.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.sv.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Det är möjligt att du har varit i närheten av en användare som testats positivt för COVID-19. Tryck för mer information. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.sw.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.sw.resx index faeb14a5..c0818503 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.sw.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.sw.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Inawezekana umekuwa karibu na mtumiaji ambaye alijaribiwa chanya kwa ajili ya kitambulisho-19. Donoa kwa maelezo zaidi. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ta.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ta.resx index f7971f4e..9bd2d60d 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ta.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ta.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json COVID-19 க்கு நேர்மறையான சோதனை செய்த ஒரு பயனருக்கு நீங்கள் நெருக்கமாக இருந்திருக்கலாம். மேலும் விவரங்களுக்கு தட்டவும். diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.te.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.te.resx index 61b270fe..645e1155 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.te.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.te.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json COVID-19 కొరకు పాజిటివ్ టెస్ట్ చేసిన యూజర్ కు మీరు దగ్గరల్లో ఉండే సంభావ్యత ఉంది. మరిన్ని వివరాల కొరకు తట్టండి. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.th.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.th.resx index cb169f74..33b554d9 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.th.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.th.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json มีความเป็นไปได้ที่คุณมีการพบปะใกล้ชิดกับผู้ที่ติดเชื้อ COVID-19 แตะเพื่อเพิ่มเติม diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.tr.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.tr.resx index 3092cdcc..240f9100 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.tr.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.tr.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json COVID-19 testi pozitif çıkan bir kullanıcıya yakın olması mümkündür. Daha fazla ayrıntı için dokunun. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.uk.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.uk.resx index f6e337af..a0517912 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.uk.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.uk.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Можливо, ви були в безпосередній близькості від користувача, який перевіряв позитивні для COVID-19. Торкніться значка, щоб дізнатися більше. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.ur.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.ur.resx index 548494cd..4f8570c4 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.ur.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.ur.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json یہ ممکن ہے کہ آپ ایک صارف کے قریب قربت میں ہیں جنہوں نے COVID کے لئے مثبت تجربہ کیا ہے. مزید تفصیلات کے لئے ٹیپ کریں ۔ diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.vi.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.vi.resx index cd78b933..42b6596f 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.vi.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.vi.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/en/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/en/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json Có thể bạn đã ở gần với một người dùng đã thử nghiệm tích cực cho COVID-19. Nhấn để biết thêm chi tiết. diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hans.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hans.resx index 91910035..da75c598 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hans.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hans.resx @@ -182,7 +182,7 @@ アプリの設定へ - 在應用程序設置中,您可以停止使用該應用程序並刪除用戶數據。 + 您可以在应用设置中选择停止使用该应用并删除用户数据。 アプリの設定からアプリの使用中止とユーザー情報の削除を行うことができます。 @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/zh-hans/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/zh-hans/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json 您有可能与潜在的 COVID-19 阳性患者有近距离接触。点击了解详情。 diff --git a/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hant.resx b/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hant.resx index 7743c660..8d7256e4 100644 --- a/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hant.resx +++ b/Covid19Radar/Covid19Radar/Resources/AppResources.zh-Hant.resx @@ -577,7 +577,7 @@ https://covid19radarjpnprod.z11.web.core.windows.net/zh-hans/index.html - https://covid19radarjpnprod.z11.web.core.windows.net/zh-hans/chatbot4.html + https://covid19radarjpnprod.z11.web.core.windows.net/phone.json 您可能與一位確診 COVID-19 使用者接觸過。 點此以獲取更多詳細訊息。 diff --git a/Covid19Radar/Covid19Radar/Resources/html/license.md b/Covid19Radar/Covid19Radar/Resources/html/license.md index c9d7f9cb..a5d049d3 100644 --- a/Covid19Radar/Covid19Radar/Resources/html/license.md +++ b/Covid19Radar/Covid19Radar/Resources/html/license.md @@ -385,3 +385,49 @@ The above copyright notice and this permission notice shall be included in all c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +--- +## (Font) Font Awesome Free +--- + +Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want. + +Icons CC BY 4.0 License +In the Font Awesome Free download, the CC BY 4.0 license applies to all icons packaged as .svg and .js files types. + +Fonts SIL OFL 1.1 License +In the Font Awesome Free download, the SIL OLF license applies to all icons packaged as web and desktop font files. + +Code MIT License +In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. + +Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font Awesome Free files already contain embedded comments with sufficient attribution, so you shouldn't need to do anything additional when using these files normally. + +We've kept attribution comments terse, so we ask that you do not actively work to remove them from files, especially code. They're a great way for folks to learn about Font Awesome. + +--- +## (Font) Noto Sans CJK JP +--- + +This Font Software is licensed under the SIL Open Font License, +Version 1.1. + +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +--- +## (Font) Roboto +--- + +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +--- +## (Font) Material Design Icons +--- + +Copyright (c) 2014, Austin Andrews (http://materialdesignicons.com/), with Reserved Font Name Material Design Icons. + +Copyright (c) 2014, Google (http://www.google.com/design/) uses the license at https://github.com/google/material-design-icons/blob/master/LICENSE + +This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL diff --git a/Covid19Radar/Covid19Radar/Services/ExposureNotificationHandler.cs b/Covid19Radar/Covid19Radar/Services/ExposureNotificationHandler.cs index d51d920b..96b1f0ce 100644 --- a/Covid19Radar/Covid19Radar/Services/ExposureNotificationHandler.cs +++ b/Covid19Radar/Covid19Radar/Services/ExposureNotificationHandler.cs @@ -75,11 +75,12 @@ public async Task ExposureDetectedAsync(ExposureDetectionSummary summary, Func { foreach (var exposure in exposureInfo) { + Console.WriteLine($"COCOA found exposure {exposure.Timestamp}"); + UserExposureInfo userExposureInfo = new UserExposureInfo(exposure.Timestamp, exposure.Duration, exposure.AttenuationValue, exposure.TotalRiskScore, (Covid19Radar.Model.UserRiskLevel)exposure.TransmissionRiskLevel); userData.ExposureInformation.Add(userExposureInfo); } @@ -120,6 +121,7 @@ public async Task FetchExposureKeyBatchFilesFromServerAsync(Func 0) { + Console.WriteLine("COCOA Submit Batches"); await submitBatches(downloadedFiles); // delete all temporary files @@ -140,7 +142,7 @@ public async Task FetchExposureKeyBatchFilesFromServerAsync(Func lastTekTimestamp = userData.LastProcessTekTimestamp; @@ -188,8 +190,8 @@ public async Task FetchExposureKeyBatchFilesFromServerAsync(Func lastCreated || lastCreated == 0) { var tmpFile = Path.Combine(tmpDir, Guid.NewGuid().ToString() + ".zip"); - Console.WriteLine(Utils.SerializeToJson(tekItem)); - Console.WriteLine(tmpFile); + Debug.WriteLine(Utils.SerializeToJson(tekItem)); + Debug.WriteLine(tmpFile); using (Stream responseStream = await httpDataService.GetTemporaryExposureKey(tekItem.Url, cancellationToken)) using (var fileStream = File.Create(tmpFile)) @@ -206,11 +208,12 @@ public async Task FetchExposureKeyBatchFilesFromServerAsync(Func GetStatusMessageAsync() } this.CurrentStatusMessage = message; - Console.WriteLine(message); + Debug.WriteLine(message); return message; } diff --git a/Covid19Radar/Covid19Radar/ViewModels/HomePage/ContactedNotifyPageViewModel.cs b/Covid19Radar/Covid19Radar/ViewModels/HomePage/ContactedNotifyPageViewModel.cs index 67776227..3369fe1b 100644 --- a/Covid19Radar/Covid19Radar/ViewModels/HomePage/ContactedNotifyPageViewModel.cs +++ b/Covid19Radar/Covid19Radar/ViewModels/HomePage/ContactedNotifyPageViewModel.cs @@ -3,6 +3,11 @@ using Xamarin.Forms; using Xamarin.Essentials; using Covid19Radar.Resources; +using Newtonsoft.Json.Linq; +using System.Net.Http; +using System; +using ImTools; +using Acr.UserDialogs; namespace Covid19Radar.ViewModels { @@ -32,7 +37,25 @@ public ContactedNotifyPageViewModel(INavigationService navigationService, UserDa public Command OnClickByPhone => new Command(async () => { var uri = AppResources.UrlContactedPhone; - await Browser.OpenAsync(uri, BrowserLaunchMode.SystemPreferred); + using (var client = new HttpClient()) + { + UserDialogs.Instance.ShowLoading(); + try + { + var json = await client.GetStringAsync(uri); + var phoneNumber = JObject.Parse(json).Value("phone"); + Console.WriteLine($"Contacted phone call number = {phoneNumber}"); + PhoneDialer.Open(phoneNumber); + } + catch (Exception ex) + { + Console.WriteLine(ex.ToString()); + } + finally + { + UserDialogs.Instance.HideLoading(); + } + } }); } diff --git a/Covid19Radar/Covid19Radar/ViewModels/HomePage/NotifyOtherPageViewModel.cs b/Covid19Radar/Covid19Radar/ViewModels/HomePage/NotifyOtherPageViewModel.cs index 0d7da10b..fe98df99 100644 --- a/Covid19Radar/Covid19Radar/ViewModels/HomePage/NotifyOtherPageViewModel.cs +++ b/Covid19Radar/Covid19Radar/ViewModels/HomePage/NotifyOtherPageViewModel.cs @@ -15,8 +15,22 @@ namespace Covid19Radar.ViewModels { public class NotifyOtherPageViewModel : ViewModelBase { - public bool IsEnabled { get; set; } - public string DiagnosisUid { get; set; } + private string _diagnosisUid; + public string DiagnosisUid + { + get { return _diagnosisUid; } + set + { + SetProperty(ref _diagnosisUid, value); + IsEnabled = DiagnosisUid.Length == AppConstants.MaxDiagnosisUidCount; // validate + } + } + private bool _isEnabled; + public bool IsEnabled + { + get { return _isEnabled; } + set { SetProperty(ref _isEnabled, value); } + } private int errorCount { get; set; } private readonly UserDataService userDataService; @@ -28,7 +42,7 @@ public NotifyOtherPageViewModel(INavigationService navigationService, UserDataSe this.userDataService = userDataService; userData = this.userDataService.Get(); errorCount = 0; - IsEnabled = true; + DiagnosisUid = ""; } public Command OnClickRegister => (new Command(async () => @@ -72,7 +86,7 @@ await UserDialogs.Instance.AlertAsync(AppResources.NotifyOtherPageDiag3Message, // Init Dialog - if (string.IsNullOrEmpty(DiagnosisUid)) + if (string.IsNullOrEmpty(_diagnosisUid)) { await UserDialogs.Instance.AlertAsync( AppResources.NotifyOtherPageDiag4Message, @@ -86,7 +100,7 @@ await UserDialogs.Instance.AlertAsync( } Regex regex = new Regex(AppConstants.positiveRegex); - if (!regex.IsMatch(DiagnosisUid)) + if (!regex.IsMatch(_diagnosisUid)) { await UserDialogs.Instance.AlertAsync( AppResources.NotifyOtherPageDiag5Message, @@ -118,7 +132,7 @@ await UserDialogs.Instance.AlertAsync( } // Set the submitted UID - userData.AddDiagnosis(DiagnosisUid, new DateTimeOffset(DateTime.Now)); + userData.AddDiagnosis(_diagnosisUid, new DateTimeOffset(DateTime.Now)); await userDataService.SetAsync(userData); // Submit our diagnosis @@ -143,7 +157,6 @@ await UserDialogs.Instance.AlertAsync( finally { UserDialogs.Instance.HideLoading(); - IsEnabled = true; } })); } diff --git a/Covid19Radar/Covid19Radar/ViewModels/MenuPageViewModel.cs b/Covid19Radar/Covid19Radar/ViewModels/MenuPageViewModel.cs index 46b042ee..10d7a2de 100644 --- a/Covid19Radar/Covid19Radar/ViewModels/MenuPageViewModel.cs +++ b/Covid19Radar/Covid19Radar/ViewModels/MenuPageViewModel.cs @@ -4,6 +4,8 @@ using Xamarin.Forms; using Covid19Radar.Model; using Covid19Radar.Views; +using System.Diagnostics; +using Xamarin.Forms.Internals; namespace Covid19Radar.ViewModels { @@ -27,33 +29,43 @@ public MenuPageViewModel(INavigationService navigationService) : base(navigation { Icon = "\uf965", PageName = nameof(HomePage), - Title = Resources.AppResources.HomePageTitle + Title = Resources.AppResources.HomePageTitle, + IconColor = "#019AE8", + TextColor = "#000" }); MenuItems.Add(new MainMenuModel() { Icon = "\uf013", PageName = nameof(SettingsPage), - Title = Resources.AppResources.SettingsPageTitle + Title = Resources.AppResources.SettingsPageTitle, + IconColor = "#019AE8", + TextColor = "#000" }); MenuItems.Add(new MainMenuModel() { Icon = "\uf0e0", PageName = nameof(InqueryPage), - Title = Resources.AppResources.InqueryPageTitle + Title = Resources.AppResources.InqueryPageTitle, + IconColor = "#019AE8", + TextColor = "#000" }); MenuItems.Add(new MainMenuModel() { Icon = "\uf70e", PageName = nameof(TermsofservicePage), - Title = Resources.AppResources.TermsofservicePageTitle + Title = Resources.AppResources.TermsofservicePageTitle, + IconColor = "#019AE8", + TextColor = "#000" }); MenuItems.Add(new MainMenuModel() { Icon = "\uf70e", PageName = nameof(PrivacyPolicyPage2), - Title = Resources.AppResources.PrivacyPolicyPageTitle + Title = Resources.AppResources.PrivacyPolicyPageTitle, + IconColor = "#019AE8", + TextColor = "#000" }); /* #if DEBUG @@ -195,9 +207,21 @@ public MenuPageViewModel(INavigationService navigationService) : base(navigation async void Navigate() { + ClearSelectedItem(); + SelectedMenuItem.IconColor = "#FFF"; + SelectedMenuItem.TextColor = "#FFF"; await NavigationService.NavigateAsync(nameof(NavigationPage) + "/" + SelectedMenuItem.PageName); return; } + private void ClearSelectedItem() + { + MenuItems.ForEach(item => + { + item.IconColor = "#019AE8"; + item.TextColor = "#000"; + }); + } + } } diff --git a/Covid19Radar/Covid19Radar/Views/HomePage/NotifyOtherPage.xaml b/Covid19Radar/Covid19Radar/Views/HomePage/NotifyOtherPage.xaml index 19599e8e..6e155974 100644 --- a/Covid19Radar/Covid19Radar/Views/HomePage/NotifyOtherPage.xaml +++ b/Covid19Radar/Covid19Radar/Views/HomePage/NotifyOtherPage.xaml @@ -7,6 +7,7 @@ xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core" xmlns:prism="http://prismlibrary.com" xmlns:resources="clr-namespace:Covid19Radar.Resources" + xmlns:common="clr-namespace:Covid19Radar.Common" xmlns:system="clr-namespace:System;assembly=netstandard" Title="{x:Static resources:AppResources.NotifyOtherPageTitle}" ios:Page.UseSafeArea="true" @@ -50,7 +51,7 @@ diff --git a/Covid19Radar/Covid19Radar/Views/MenuPage.xaml b/Covid19Radar/Covid19Radar/Views/MenuPage.xaml index 3e4b3c0f..a95d910b 100644 --- a/Covid19Radar/Covid19Radar/Views/MenuPage.xaml +++ b/Covid19Radar/Covid19Radar/Views/MenuPage.xaml @@ -44,15 +44,32 @@ FontFamily="FA-S" Glyph="{Binding Icon}" Size="30" - Color="#019AE8" /> + Color="#019AE8"> + + + + + + + + + diff --git a/doc/Developer.md b/doc/Developer.md index ce9a62f0..98190e22 100644 --- a/doc/Developer.md +++ b/doc/Developer.md @@ -24,8 +24,15 @@ On the macOS - macOS Catalina v10.15.5 - [Visual Studio for Mac](https://visualstudio.microsoft.com/ja/vs/mac/xamarin/) v8.6.4 + - .NET Core SDK v3.1.301 - Xamarin.Android - - .NET Core SDK v3.x.xxx (maybe need) + + NOTE: You can also use [homebrew cask](https://github.com/Homebrew/homebrew-cask) to install these packages. + + ``` + brew cask install visual-studio dotnet-sdk xamarin-android + ``` + - Android Studio v4.0 - JDK (Xamarin) - Android SDK @@ -47,9 +54,16 @@ On the Windows On the macOS - macOS Catalina v10.15.5 +- Xcode v11.5 - [Visual Studio for Mac](https://visualstudio.microsoft.com/ja/vs/mac/xamarin/) v8.6.4 + - .NET Core SDK v3.1.301 - Xamarin.iOS -- Xcode v11.5 + + NOTE: You can also use [homebrew cask](https://github.com/Homebrew/homebrew-cask) to install these packages. + + ``` + brew cask install visual-studio dotnet-sdk xamarin-ios + ``` More info diff --git a/src/Covid19Radar.Background/Services/TemporaryExposureKeyExportBatchService.cs b/src/Covid19Radar.Background/Services/TemporaryExposureKeyExportBatchService.cs index dc86faa0..e7b2450e 100644 --- a/src/Covid19Radar.Background/Services/TemporaryExposureKeyExportBatchService.cs +++ b/src/Covid19Radar.Background/Services/TemporaryExposureKeyExportBatchService.cs @@ -137,13 +137,9 @@ public async Task CreateAsync(ulong startTimestamp, var exportModel = new TemporaryExposureKeyExportModel(); exportModel.id = batchNum.ToString(); exportModel.PartitionKey = region; - // TODO: not support apple - //exportModel.BatchNum = batchNum; - exportModel.BatchNum = 1; + exportModel.BatchNum = batchNum; exportModel.Region = region; - // TODO: not support apple - //exportModel.BatchSize = exportKeyModels.Length; - exportModel.BatchSize = 1; + exportModel.BatchSize = exportKeyModels.Length; exportModel.StartTimestamp = startTimestamp; exportModel.EndTimestamp = endTimestamp; exportModel.TimestampSecondsSinceEpoch = batchTimestamp; @@ -151,8 +147,9 @@ public async Task CreateAsync(ulong startTimestamp, var bin = new TemporaryExposureKeyExport(); bin.Keys.AddRange(exportKeys); - bin.BatchNum = exportModel.BatchNum; - bin.BatchSize = exportModel.BatchSize; + // TODO: not support apple + bin.BatchNum = 1; + bin.BatchSize = 1; bin.Region = exportModel.Region; bin.StartTimestamp = exportModel.StartTimestamp; bin.EndTimestamp = exportModel.EndTimestamp; diff --git a/src/Covid19Radar.Background/TemporaryExposureKeyExportBatch.cs b/src/Covid19Radar.Background/TemporaryExposureKeyExportBatch.cs index bc2f7baf..61bea17a 100644 --- a/src/Covid19Radar.Background/TemporaryExposureKeyExportBatch.cs +++ b/src/Covid19Radar.Background/TemporaryExposureKeyExportBatch.cs @@ -22,7 +22,8 @@ public TemporaryExposureKeyExportBatch(ITemporaryExposureKeyExportBatchService b /// logger /// [FunctionName("TemporaryExposureKeyExportBatch")] - public async Task Run([TimerTrigger("0 0 0 * * *")] TimerInfo myTimer, ILogger log) + public async Task Run([TimerTrigger("0 0 */1 * * *")] TimerInfo myTimer, ILogger log) + //public async Task Run([TimerTrigger("0 0 0 * * *")] TimerInfo myTimer, ILogger log) //public async Task Run([TimerTrigger("0 * * * * *")]TimerInfo myTimer, ILogger log) { log.LogInformation($"{nameof(TemporaryExposureKeyExportBatch)} Timer trigger function executed at: {DateTime.Now}");