Match LocaleCountry with LocaleLanguage 04/239904/4
authorLukasz Stanislawski <l.stanislaws@samsung.com>
Thu, 30 Jul 2020 10:46:14 +0000 (12:46 +0200)
committerLukasz Stanislawski <lukasz.stanislawski@gmail.com>
Thu, 30 Jul 2020 23:12:45 +0000 (01:12 +0200)
When setting language the LocaleLanguage and LocaleCountry should be
equal. Use custom setting to represent selected country.

Change-Id: I5322d6f7688ef8c29b4e729a78b30dfb6dc89aa3

Oobe/Oobe.Common/Services/Settings.cs [new file with mode: 0644]
Oobe/Oobe.Language/Model/LanguageManger.cs
Oobe/Oobe.Region/Model/RegionManager.cs
Oobe/Oobe.Region/res/regions_OOBE.xml
Oobe/Oobe.Terms/Model/TermsProvider.cs
Oobe/Oobe.Terms/res/terms/GB.txt [new file with mode: 0644]
Oobe/Oobe.Terms/res/terms/KR.txt [new file with mode: 0644]
Oobe/Oobe.Terms/res/terms/PL.txt [new file with mode: 0644]
Oobe/Oobe.Terms/res/terms/en_GB.txt [deleted file]
Oobe/Oobe.Terms/res/terms/ko_KR.txt [deleted file]
Oobe/Oobe.Terms/res/terms/pl_PL.txt [deleted file]

diff --git a/Oobe/Oobe.Common/Services/Settings.cs b/Oobe/Oobe.Common/Services/Settings.cs
new file mode 100644 (file)
index 0000000..d7e8ddb
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+using System;
+using Tizen.System;
+using Tizen.Applications;
+
+namespace Oobe.Common.Services
+{
+    public static class Settings
+    {
+        private const string CountryCodeKey = "country_code";
+
+        /// <summary>
+        /// Current device language
+        /// in <LANGUAGE>_<REGION> syntax. The country setting is in the ISO 639-2 format, and the region setting is in the ISO 3166-1 alpha-2 format
+        /// </summary>
+        public static string Language
+        {
+            get
+            {
+                return SystemSettings.LocaleLanguage;
+            }
+
+            set
+            {
+                SystemSettings.LocaleLanguage = value;
+                SystemSettings.LocaleCountry = value;
+            }
+        }
+
+        /// <summary>
+        /// Country code in ISO 3166-1 alpha-2.
+        /// </summary>
+        public static string Country
+        {
+            get
+            {
+                if (Preference.Contains(CountryCodeKey))
+                {
+                    return Preference.Get<string>(CountryCodeKey);
+                }
+                return String.Empty;
+            }
+
+            set
+            {
+                Preference.Set(CountryCodeKey, value);
+            }
+        }
+    }
+}
index c347b178af3b0b2f2bf3715e72c172e791ec9d22..1f760acc45002658e0202c0f3038ec211ca4be3e 100644 (file)
  */
 
 using System.Collections.Generic;
-using Tizen.System;
 using System.Linq;
 using System.IO;
 using System.Xml.Serialization;
+using Oobe.Common.Services;
 
 namespace Oobe.Language.Model
 {
@@ -42,13 +42,13 @@ namespace Oobe.Language.Model
         {
             get
             {
-                return Languages.FirstOrDefault(s => s.Code == SystemSettings.LocaleLanguage) ?? Languages.FirstOrDefault();
+                return Languages.FirstOrDefault(s => s.Code == Settings.Language) ?? Languages.FirstOrDefault();
             }
             set
             {
                 if (value != null)
                 {
-                    SystemSettings.LocaleLanguage = value.Code;
+                    Settings.Language = value.Code;
                 }
             }
         }
index 46e004c0912d9dca19aae54f6a39cd751166421d..c40cf7c0dede3cc5e89dd845890a216a50122817 100644 (file)
@@ -18,7 +18,6 @@ using System.Collections.Generic;
 using System.IO;
 using System.Linq;
 using System.Xml.Serialization;
-using Tizen.System;
 using Oobe.Common.Services;
 using System;
 
@@ -44,13 +43,13 @@ namespace Oobe.Region.Model
         {
             get
             {
-                return Regions.FirstOrDefault(s => s.CountryCode == SystemSettings.LocaleCountry) ?? Regions.FirstOrDefault();
+                return Regions.FirstOrDefault(s => s.CountryCode == Settings.Country) ?? Regions.FirstOrDefault();
             }
             set
             {
                 if (value != null)
                 {
-                    SystemSettings.LocaleCountry = value.CountryCode;
+                    Settings.Country = value.CountryCode;
                 }
             }
         }
index 86dc33f4028f350ff9bbfaea8f8835cf97c8f183..3003dd7e6d99c990519573e7702f94aa58f1c4a0 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0"?>
 <regions>
-  <region code="en_GB" name_en="UNITED_KINGDOM" />
-  <region code="ko_KR" name_en="SOUTH_KOREA" />
+  <region code="GB" name_en="UNITED_KINGDOM" />
+  <region code="KR" name_en="SOUTH_KOREA" />
 </regions>
index 1e5e8302b7077780b922ef2bf0f6f94011844695..b97d4f2fa711a112ef340f81a940835e14910ef8 100644 (file)
@@ -16,7 +16,7 @@
 
 using System;
 using System.IO;
-using Tizen.System;
+using Oobe.Common.Services;
 
 namespace Oobe.Terms.Model
 {
@@ -30,7 +30,7 @@ namespace Oobe.Terms.Model
         public string LoadTerms()
         {
             string terms = null;
-            var locale = SystemSettings.LocaleCountry;
+            var locale = Settings.Country;
             var filename = Path.Combine(Tizen.Applications.CoreApplication.Current.DirectoryInfo.Resource , "terms" , locale + ".txt");
 
             try {
diff --git a/Oobe/Oobe.Terms/res/terms/GB.txt b/Oobe/Oobe.Terms/res/terms/GB.txt
new file mode 100644 (file)
index 0000000..93d6c9e
--- /dev/null
@@ -0,0 +1,51 @@
+<b>Terms of Service For Product</b>
+
+Effective Date: [2016.11.09]
+Corporation Co., Ltd. together with its Affiliates (\"Corporation\", \"we\", \"us\", or \"our\") is pleased to offer you Product, an
+application for the Corporation Smart Refrigerator and other mobile devices that allows you to access content, information and
+application by Corporation, its licensors, and/or its third party contractors (\"Service\"). This Agreement (\"Agreement\") is a
+binding contract between you and Corporation which governs the use of the Service. The Service is only for your own personal use.
+You may not use the Service for any commercial purpose or in any way not expressly permitted by this Agreement. PLEASE READ THIS
+AGREEMENT CAREFULLY BEFORE ACCESSING OR USING THE SERVICE BECAUSE IT CONSTITUTES A BINDING LEGAL AGREEMENT BETWEEN YOU AND
+CORPORATION.
+
+BY ACCESSING OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE READ AND UNDERSTOOD THIS AGREEMENT, AND YOU AGREE TO COMPLY WITH AND
+BE BOUND BY ITS TERMS.  IF YOU ARE NOT WILLING TO BE BOUND BY THE TERMS OF THIS AGREEMENT, YOU MAY NOT ACCESS OR USE THE SERVICE.
+This Agreement incorporates the Corporation Account Terms and Conditions, located at
+https://account.corporation.com/membership/terms, that you may have already agreed to for your single sign-on user account with
+Corporation. If there is any conflict between this Agreement and the Corporation Account Terms and Conditions, this Agreement will
+prevail as specifically related to the Service, but only to the extent of actual conflict. Your use of the Service is subject to
+Corporation's privacy policy, located at http://www.corporation.com/us/common/privacy.html (\"Privacy Policy\"), which is hereby
+incorporated by this reference, and other policies that Corporation may adopt from time to time.
+Corporation may modify this Agreement from time to time. If we change this Agreement, we will update the Effective Date listed above.
+If you continue to access or use the Service after such modification, you will be deemed to have read, understood and unconditionally
+agreed to such changes.
+THE SERVICE IS NOT INTENDED FOR USE BY ANYONE UNDER THE AGE OF 13. IF YOU ARE UNDER THE AGE OF 13, YOU MAY NOT USE THE SERVICE OR
+PROVIDE CORPORATION WITH ANY PERSONALLY IDENTIFIABLE INFORMATION. If you are 13 or older but under the age of 18, you represent that
+you have reviewed these terms and conditions with your parent or legal guardian and that you and your parent or guardian understand
+and consent to these terms and conditions. If you are a parent or guardian permitting a person under the age of 18 (\"Minor\") to use
+the Service, you agree to: (i) supervise the Minor's use of the Service; (ii) assume all risks associated with the Minor's use of the
+Service, including the transmission of content to and from third parties via the Internet; (iii) assume any liability resulting from
+the Minor's use of the Service; (iv) ensure the accuracy and truthfulness of all information submitted by the Minor; and (v) assume
+responsibility and are bound by this Agreement for the Minor's access and use of the Service.
+
+1. The Services
+1.1 The Services are provided to you by Corporation and in some cases, by Corporation's Affiliates (as defined hereunder) on behalf
+of Corporation. You agree that Corporation's Affiliates are each entitled to provide the Services to you under this Agreement.
+1.2 When you access the Service, you may be asked to create an account and provide certain information including, without limitation,
+    a valid email address. You acknowledge and agree that you are solely responsible for the form, content and accuracy of any
+    content placed by you on the Service. Use of the Service will require your devices to have access or connection via mobile
+    network or Internet (fees may apply), and may require updates or upgrades from time to time. You agree that Corporation may
+    automatically download and install updates onto your device from time to time. Because use of the Service involves hardware,
+    software, and Internet access, your ability to use the Service may be affected by the reliability and performance of such system
+    requirements. You acknowledge and agree that such system requirements, which may be changed from time to time, are your
+    responsibility. You also acknowledge that the Service will not be available in all countries or on all devices, and may be
+    subject to restrictions imposed by your network carrier or Internet provider. You are solely responsible for any charges incurred
+    from your network provider related to the use of the Service.
+1.3 The Services are provided only for your personal, noncommercial use. Subject to the terms and conditions of this Agreement,
+    Corporation hereby grants you, and you accept, a limited, personal, nonexclusive, nontransferable and revocable right to use the
+    Service only as authorized in this Agreement and in any applicable separate terms from Corporation. Access to the Services is
+    licensed, not sold to you. All references to the Services include all related content, such as video, music, text, pictures,
+    graphics, user interfaces, scripts and software used to implement and provide access to the Services, and any updates, upgrades,
+    enhancements, modifications, revisions or additions to the Services made available by Corporation. However, Corporation is under
+    no obligation to provide any updates, upgrades, enhancements, modifications, revisions or additions to the Services.
diff --git a/Oobe/Oobe.Terms/res/terms/KR.txt b/Oobe/Oobe.Terms/res/terms/KR.txt
new file mode 100644 (file)
index 0000000..13ce66e
--- /dev/null
@@ -0,0 +1,27 @@
+"제1조(목적 예시)
+이 '예시문'은 사업자가 운영하는 서비스를 이용함에 있어 사업자와 이용자의 권리·의무 및 책임사항을 예시하고자 합니다. 실제 본문 내용은 각 사업자가 채워넣어야 합니다.
+
+
+제2조(정의 예시)
+① \"서비스\"란 사업자가 재화 또는 용역을 이용자에게 제공하기 위하여 컴퓨터 등 정보통신설비를 이용하여 재화 또는 용역을 거래하는 행위를 의미합니다.
+
+② \"이용자\"란 \"서비스\"에 접속하여 이 약관에 따라 \"서비스\"를 사용하는 사람을 말합니다.
+
+
+제3조 (약관의 명시와 개정 예시)
+① \"서비스\"는 이 약관의 내용을 이용자가 알 수 있도록 합니다.
+
+② 이 약관에서 정하지 아니한 사항과 이 약관의 해석에 관하여는 관례에 따릅니다.
+
+
+제4조(서비스의 제공 및 변경 예시)
+① \"서비스\"는 다음과 같은 업무를 수행합니다.
+1. \"서비스\"가 정하는 업무
+
+② \"서비스\"는 기술적 사양의 변경 등의 경우에는 장차 체결되는 계약에 의해 제공할 재화·용역의 내용을 변경할 수 있습니다. 이 경우에는 변경된 재화·용역의 내용 및 제공일자를 명시하여 현재의 재화·용역의 내용을 게시한 곳에 그 제공일자 이전에 공지합니다.
+
+③ \"서비스\"가 제공하기로 이용자와 계약을 체결한 서비스의 내용을 재화의 품절 또는 기술적 사양의 변경 등의 사유로 변경할 경우에는 \"서비스\"는 이로 인하여 이용자가 입은 손해를 배상합니다. 단, \"서비스\"에 고의 또는 과실이 없는 경우에는 그러하지 아니합니다.
+
+
+제5조(서비스의 중단 예시)
+① \"서비스\"는 컴퓨터 등 정보통신설비의 보수점검·교체 및 고장, 통신의 두절 등의 사유가 발생한 경우에는 서비스의 제공을 일시적으로 중단할 수 있습니다.
diff --git a/Oobe/Oobe.Terms/res/terms/PL.txt b/Oobe/Oobe.Terms/res/terms/PL.txt
new file mode 100644 (file)
index 0000000..dddd337
--- /dev/null
@@ -0,0 +1,51 @@
+<b>Zasady i warunki użytkowania produktu</b>
+
+Effective Date: [2016.11.09]
+Corporation Co., Ltd. together with its Affiliates (\"Corporation\", \"we\", \"us\", or \"our\") is pleased to offer you Product, an
+application for the Corporation Smart Refrigerator and other mobile devices that allows you to access content, information and
+application by Corporation, its licensors, and/or its third party contractors (\"Service\"). This Agreement (\"Agreement\") is a
+binding contract between you and Corporation which governs the use of the Service. The Service is only for your own personal use.
+You may not use the Service for any commercial purpose or in any way not expressly permitted by this Agreement. PLEASE READ THIS
+AGREEMENT CAREFULLY BEFORE ACCESSING OR USING THE SERVICE BECAUSE IT CONSTITUTES A BINDING LEGAL AGREEMENT BETWEEN YOU AND
+CORPORATION.
+
+BY ACCESSING OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE READ AND UNDERSTOOD THIS AGREEMENT, AND YOU AGREE TO COMPLY WITH AND
+BE BOUND BY ITS TERMS.  IF YOU ARE NOT WILLING TO BE BOUND BY THE TERMS OF THIS AGREEMENT, YOU MAY NOT ACCESS OR USE THE SERVICE.
+This Agreement incorporates the Corporation Account Terms and Conditions, located at
+https://account.corporation.com/membership/terms, that you may have already agreed to for your single sign-on user account with
+Corporation. If there is any conflict between this Agreement and the Corporation Account Terms and Conditions, this Agreement will
+prevail as specifically related to the Service, but only to the extent of actual conflict. Your use of the Service is subject to
+Corporation's privacy policy, located at http://www.corporation.com/us/common/privacy.html (\"Privacy Policy\"), which is hereby
+incorporated by this reference, and other policies that Corporation may adopt from time to time.
+Corporation may modify this Agreement from time to time. If we change this Agreement, we will update the Effective Date listed above.
+If you continue to access or use the Service after such modification, you will be deemed to have read, understood and unconditionally
+agreed to such changes.
+THE SERVICE IS NOT INTENDED FOR USE BY ANYONE UNDER THE AGE OF 13. IF YOU ARE UNDER THE AGE OF 13, YOU MAY NOT USE THE SERVICE OR
+PROVIDE CORPORATION WITH ANY PERSONALLY IDENTIFIABLE INFORMATION. If you are 13 or older but under the age of 18, you represent that
+you have reviewed these terms and conditions with your parent or legal guardian and that you and your parent or guardian understand
+and consent to these terms and conditions. If you are a parent or guardian permitting a person under the age of 18 (\"Minor\") to use
+the Service, you agree to: (i) supervise the Minor's use of the Service; (ii) assume all risks associated with the Minor's use of the
+Service, including the transmission of content to and from third parties via the Internet; (iii) assume any liability resulting from
+the Minor's use of the Service; (iv) ensure the accuracy and truthfulness of all information submitted by the Minor; and (v) assume
+responsibility and are bound by this Agreement for the Minor's access and use of the Service.
+
+1. The Services
+1.1 The Services are provided to you by Corporation and in some cases, by Corporation's Affiliates (as defined hereunder) on behalf
+of Corporation. You agree that Corporation's Affiliates are each entitled to provide the Services to you under this Agreement.
+1.2 When you access the Service, you may be asked to create an account and provide certain information including, without limitation,
+    a valid email address. You acknowledge and agree that you are solely responsible for the form, content and accuracy of any
+    content placed by you on the Service. Use of the Service will require your devices to have access or connection via mobile
+    network or Internet (fees may apply), and may require updates or upgrades from time to time. You agree that Corporation may
+    automatically download and install updates onto your device from time to time. Because use of the Service involves hardware,
+    software, and Internet access, your ability to use the Service may be affected by the reliability and performance of such system
+    requirements. You acknowledge and agree that such system requirements, which may be changed from time to time, are your
+    responsibility. You also acknowledge that the Service will not be available in all countries or on all devices, and may be
+    subject to restrictions imposed by your network carrier or Internet provider. You are solely responsible for any charges incurred
+    from your network provider related to the use of the Service.
+1.3 The Services are provided only for your personal, noncommercial use. Subject to the terms and conditions of this Agreement,
+    Corporation hereby grants you, and you accept, a limited, personal, nonexclusive, nontransferable and revocable right to use the
+    Service only as authorized in this Agreement and in any applicable separate terms from Corporation. Access to the Services is
+    licensed, not sold to you. All references to the Services include all related content, such as video, music, text, pictures,
+    graphics, user interfaces, scripts and software used to implement and provide access to the Services, and any updates, upgrades,
+    enhancements, modifications, revisions or additions to the Services made available by Corporation. However, Corporation is under
+    no obligation to provide any updates, upgrades, enhancements, modifications, revisions or additions to the Services.
diff --git a/Oobe/Oobe.Terms/res/terms/en_GB.txt b/Oobe/Oobe.Terms/res/terms/en_GB.txt
deleted file mode 100644 (file)
index 93d6c9e..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-<b>Terms of Service For Product</b>
-
-Effective Date: [2016.11.09]
-Corporation Co., Ltd. together with its Affiliates (\"Corporation\", \"we\", \"us\", or \"our\") is pleased to offer you Product, an
-application for the Corporation Smart Refrigerator and other mobile devices that allows you to access content, information and
-application by Corporation, its licensors, and/or its third party contractors (\"Service\"). This Agreement (\"Agreement\") is a
-binding contract between you and Corporation which governs the use of the Service. The Service is only for your own personal use.
-You may not use the Service for any commercial purpose or in any way not expressly permitted by this Agreement. PLEASE READ THIS
-AGREEMENT CAREFULLY BEFORE ACCESSING OR USING THE SERVICE BECAUSE IT CONSTITUTES A BINDING LEGAL AGREEMENT BETWEEN YOU AND
-CORPORATION.
-
-BY ACCESSING OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE READ AND UNDERSTOOD THIS AGREEMENT, AND YOU AGREE TO COMPLY WITH AND
-BE BOUND BY ITS TERMS.  IF YOU ARE NOT WILLING TO BE BOUND BY THE TERMS OF THIS AGREEMENT, YOU MAY NOT ACCESS OR USE THE SERVICE.
-This Agreement incorporates the Corporation Account Terms and Conditions, located at
-https://account.corporation.com/membership/terms, that you may have already agreed to for your single sign-on user account with
-Corporation. If there is any conflict between this Agreement and the Corporation Account Terms and Conditions, this Agreement will
-prevail as specifically related to the Service, but only to the extent of actual conflict. Your use of the Service is subject to
-Corporation's privacy policy, located at http://www.corporation.com/us/common/privacy.html (\"Privacy Policy\"), which is hereby
-incorporated by this reference, and other policies that Corporation may adopt from time to time.
-Corporation may modify this Agreement from time to time. If we change this Agreement, we will update the Effective Date listed above.
-If you continue to access or use the Service after such modification, you will be deemed to have read, understood and unconditionally
-agreed to such changes.
-THE SERVICE IS NOT INTENDED FOR USE BY ANYONE UNDER THE AGE OF 13. IF YOU ARE UNDER THE AGE OF 13, YOU MAY NOT USE THE SERVICE OR
-PROVIDE CORPORATION WITH ANY PERSONALLY IDENTIFIABLE INFORMATION. If you are 13 or older but under the age of 18, you represent that
-you have reviewed these terms and conditions with your parent or legal guardian and that you and your parent or guardian understand
-and consent to these terms and conditions. If you are a parent or guardian permitting a person under the age of 18 (\"Minor\") to use
-the Service, you agree to: (i) supervise the Minor's use of the Service; (ii) assume all risks associated with the Minor's use of the
-Service, including the transmission of content to and from third parties via the Internet; (iii) assume any liability resulting from
-the Minor's use of the Service; (iv) ensure the accuracy and truthfulness of all information submitted by the Minor; and (v) assume
-responsibility and are bound by this Agreement for the Minor's access and use of the Service.
-
-1. The Services
-1.1 The Services are provided to you by Corporation and in some cases, by Corporation's Affiliates (as defined hereunder) on behalf
-of Corporation. You agree that Corporation's Affiliates are each entitled to provide the Services to you under this Agreement.
-1.2 When you access the Service, you may be asked to create an account and provide certain information including, without limitation,
-    a valid email address. You acknowledge and agree that you are solely responsible for the form, content and accuracy of any
-    content placed by you on the Service. Use of the Service will require your devices to have access or connection via mobile
-    network or Internet (fees may apply), and may require updates or upgrades from time to time. You agree that Corporation may
-    automatically download and install updates onto your device from time to time. Because use of the Service involves hardware,
-    software, and Internet access, your ability to use the Service may be affected by the reliability and performance of such system
-    requirements. You acknowledge and agree that such system requirements, which may be changed from time to time, are your
-    responsibility. You also acknowledge that the Service will not be available in all countries or on all devices, and may be
-    subject to restrictions imposed by your network carrier or Internet provider. You are solely responsible for any charges incurred
-    from your network provider related to the use of the Service.
-1.3 The Services are provided only for your personal, noncommercial use. Subject to the terms and conditions of this Agreement,
-    Corporation hereby grants you, and you accept, a limited, personal, nonexclusive, nontransferable and revocable right to use the
-    Service only as authorized in this Agreement and in any applicable separate terms from Corporation. Access to the Services is
-    licensed, not sold to you. All references to the Services include all related content, such as video, music, text, pictures,
-    graphics, user interfaces, scripts and software used to implement and provide access to the Services, and any updates, upgrades,
-    enhancements, modifications, revisions or additions to the Services made available by Corporation. However, Corporation is under
-    no obligation to provide any updates, upgrades, enhancements, modifications, revisions or additions to the Services.
diff --git a/Oobe/Oobe.Terms/res/terms/ko_KR.txt b/Oobe/Oobe.Terms/res/terms/ko_KR.txt
deleted file mode 100644 (file)
index 13ce66e..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-"제1조(목적 예시)
-이 '예시문'은 사업자가 운영하는 서비스를 이용함에 있어 사업자와 이용자의 권리·의무 및 책임사항을 예시하고자 합니다. 실제 본문 내용은 각 사업자가 채워넣어야 합니다.
-
-
-제2조(정의 예시)
-① \"서비스\"란 사업자가 재화 또는 용역을 이용자에게 제공하기 위하여 컴퓨터 등 정보통신설비를 이용하여 재화 또는 용역을 거래하는 행위를 의미합니다.
-
-② \"이용자\"란 \"서비스\"에 접속하여 이 약관에 따라 \"서비스\"를 사용하는 사람을 말합니다.
-
-
-제3조 (약관의 명시와 개정 예시)
-① \"서비스\"는 이 약관의 내용을 이용자가 알 수 있도록 합니다.
-
-② 이 약관에서 정하지 아니한 사항과 이 약관의 해석에 관하여는 관례에 따릅니다.
-
-
-제4조(서비스의 제공 및 변경 예시)
-① \"서비스\"는 다음과 같은 업무를 수행합니다.
-1. \"서비스\"가 정하는 업무
-
-② \"서비스\"는 기술적 사양의 변경 등의 경우에는 장차 체결되는 계약에 의해 제공할 재화·용역의 내용을 변경할 수 있습니다. 이 경우에는 변경된 재화·용역의 내용 및 제공일자를 명시하여 현재의 재화·용역의 내용을 게시한 곳에 그 제공일자 이전에 공지합니다.
-
-③ \"서비스\"가 제공하기로 이용자와 계약을 체결한 서비스의 내용을 재화의 품절 또는 기술적 사양의 변경 등의 사유로 변경할 경우에는 \"서비스\"는 이로 인하여 이용자가 입은 손해를 배상합니다. 단, \"서비스\"에 고의 또는 과실이 없는 경우에는 그러하지 아니합니다.
-
-
-제5조(서비스의 중단 예시)
-① \"서비스\"는 컴퓨터 등 정보통신설비의 보수점검·교체 및 고장, 통신의 두절 등의 사유가 발생한 경우에는 서비스의 제공을 일시적으로 중단할 수 있습니다.
diff --git a/Oobe/Oobe.Terms/res/terms/pl_PL.txt b/Oobe/Oobe.Terms/res/terms/pl_PL.txt
deleted file mode 100644 (file)
index dddd337..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-<b>Zasady i warunki użytkowania produktu</b>
-
-Effective Date: [2016.11.09]
-Corporation Co., Ltd. together with its Affiliates (\"Corporation\", \"we\", \"us\", or \"our\") is pleased to offer you Product, an
-application for the Corporation Smart Refrigerator and other mobile devices that allows you to access content, information and
-application by Corporation, its licensors, and/or its third party contractors (\"Service\"). This Agreement (\"Agreement\") is a
-binding contract between you and Corporation which governs the use of the Service. The Service is only for your own personal use.
-You may not use the Service for any commercial purpose or in any way not expressly permitted by this Agreement. PLEASE READ THIS
-AGREEMENT CAREFULLY BEFORE ACCESSING OR USING THE SERVICE BECAUSE IT CONSTITUTES A BINDING LEGAL AGREEMENT BETWEEN YOU AND
-CORPORATION.
-
-BY ACCESSING OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE READ AND UNDERSTOOD THIS AGREEMENT, AND YOU AGREE TO COMPLY WITH AND
-BE BOUND BY ITS TERMS.  IF YOU ARE NOT WILLING TO BE BOUND BY THE TERMS OF THIS AGREEMENT, YOU MAY NOT ACCESS OR USE THE SERVICE.
-This Agreement incorporates the Corporation Account Terms and Conditions, located at
-https://account.corporation.com/membership/terms, that you may have already agreed to for your single sign-on user account with
-Corporation. If there is any conflict between this Agreement and the Corporation Account Terms and Conditions, this Agreement will
-prevail as specifically related to the Service, but only to the extent of actual conflict. Your use of the Service is subject to
-Corporation's privacy policy, located at http://www.corporation.com/us/common/privacy.html (\"Privacy Policy\"), which is hereby
-incorporated by this reference, and other policies that Corporation may adopt from time to time.
-Corporation may modify this Agreement from time to time. If we change this Agreement, we will update the Effective Date listed above.
-If you continue to access or use the Service after such modification, you will be deemed to have read, understood and unconditionally
-agreed to such changes.
-THE SERVICE IS NOT INTENDED FOR USE BY ANYONE UNDER THE AGE OF 13. IF YOU ARE UNDER THE AGE OF 13, YOU MAY NOT USE THE SERVICE OR
-PROVIDE CORPORATION WITH ANY PERSONALLY IDENTIFIABLE INFORMATION. If you are 13 or older but under the age of 18, you represent that
-you have reviewed these terms and conditions with your parent or legal guardian and that you and your parent or guardian understand
-and consent to these terms and conditions. If you are a parent or guardian permitting a person under the age of 18 (\"Minor\") to use
-the Service, you agree to: (i) supervise the Minor's use of the Service; (ii) assume all risks associated with the Minor's use of the
-Service, including the transmission of content to and from third parties via the Internet; (iii) assume any liability resulting from
-the Minor's use of the Service; (iv) ensure the accuracy and truthfulness of all information submitted by the Minor; and (v) assume
-responsibility and are bound by this Agreement for the Minor's access and use of the Service.
-
-1. The Services
-1.1 The Services are provided to you by Corporation and in some cases, by Corporation's Affiliates (as defined hereunder) on behalf
-of Corporation. You agree that Corporation's Affiliates are each entitled to provide the Services to you under this Agreement.
-1.2 When you access the Service, you may be asked to create an account and provide certain information including, without limitation,
-    a valid email address. You acknowledge and agree that you are solely responsible for the form, content and accuracy of any
-    content placed by you on the Service. Use of the Service will require your devices to have access or connection via mobile
-    network or Internet (fees may apply), and may require updates or upgrades from time to time. You agree that Corporation may
-    automatically download and install updates onto your device from time to time. Because use of the Service involves hardware,
-    software, and Internet access, your ability to use the Service may be affected by the reliability and performance of such system
-    requirements. You acknowledge and agree that such system requirements, which may be changed from time to time, are your
-    responsibility. You also acknowledge that the Service will not be available in all countries or on all devices, and may be
-    subject to restrictions imposed by your network carrier or Internet provider. You are solely responsible for any charges incurred
-    from your network provider related to the use of the Service.
-1.3 The Services are provided only for your personal, noncommercial use. Subject to the terms and conditions of this Agreement,
-    Corporation hereby grants you, and you accept, a limited, personal, nonexclusive, nontransferable and revocable right to use the
-    Service only as authorized in this Agreement and in any applicable separate terms from Corporation. Access to the Services is
-    licensed, not sold to you. All references to the Services include all related content, such as video, music, text, pictures,
-    graphics, user interfaces, scripts and software used to implement and provide access to the Services, and any updates, upgrades,
-    enhancements, modifications, revisions or additions to the Services made available by Corporation. However, Corporation is under
-    no obligation to provide any updates, upgrades, enhancements, modifications, revisions or additions to the Services.