From 9d8fa1aa98e36d69c5973f79253660433d3ea0bb Mon Sep 17 00:00:00 2001
From: Alex <80858832+Humanoidear@users.noreply.github.com>
Date: Mon, 1 Jun 2026 23:24:58 +0200
Subject: [PATCH 1/2] Fix: Add auth token to github for correct generation.
---
.env.example | 3 ++-
src/components/Hero.astro | 6 +++++-
src/components/Socials.astro | 10 +++++++---
src/components/build.astro | 6 +++++-
4 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/.env.example b/.env.example
index 9648f225..b7019ff1 100644
--- a/.env.example
+++ b/.env.example
@@ -1,4 +1,5 @@
CONTENTFUL_SPACE_ID=YOUR_SPACE_ID
CONTENTFUL_DELIVERY_TOKEN=YOUR_DELIVERY_TOKEN
CONTENTFUL_PREVIEW_TOKEN=YOUR_PREVIEW_TOKEN
-SITE_URL=https://wiilink.ca
\ No newline at end of file
+SITE_URL=https://wiilink.ca
+GITHUB_TOKEN=YOUR_GITHUB_TOKEN
\ No newline at end of file
diff --git a/src/components/Hero.astro b/src/components/Hero.astro
index 417a5fd1..b27d548c 100644
--- a/src/components/Hero.astro
+++ b/src/components/Hero.astro
@@ -6,7 +6,11 @@ import { Icon } from "astro-icon/components";
async function fetchGitHub() {
try {
- const response = await fetch('https://api.github.com/repos/WiiLink24/WiiLink-Patcher-GUI/releases/latest');
+ const response = await fetch('https://api.github.com/repos/WiiLink24/WiiLink-Patcher-GUI/releases/latest', {
+ headers: {
+ 'Authorization': `Bearer ${import.meta.env.GITHUB_TOKEN}`
+ }
+ });
const data = await response.json();
return data || 0;
} catch (error) {
diff --git a/src/components/Socials.astro b/src/components/Socials.astro
index 111b4a75..6900ed2a 100644
--- a/src/components/Socials.astro
+++ b/src/components/Socials.astro
@@ -6,11 +6,11 @@ import { Icon } from "astro-icon/components";
async function fetchCounts() {
const results = {};
- async function fetchWithTimeout(url, timeout = 5000) {
+ async function fetchWithTimeout(url, options = {}, timeout = 5000) {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), timeout);
try {
- const response = await fetch(url, { signal: controller.signal });
+ const response = await fetch(url, { ...options, signal: controller.signal });
clearTimeout(timeoutId);
if (!response.ok) throw new Error(`HTTP ${response.status}`);
return await response.json();
@@ -22,7 +22,11 @@ async function fetchCounts() {
async function fetchGitHub() {
try {
- const data = await fetchWithTimeout("https://api.github.com/users/wiilink24");
+ const data = await fetchWithTimeout("https://api.github.com/users/wiilink24", {
+ headers: {
+ 'Authorization': `Bearer ${import.meta.env.GITHUB_TOKEN}`
+ }
+ });
return data.followers || 0;
} catch (error) {
console.error("GitHub Error:", error);
diff --git a/src/components/build.astro b/src/components/build.astro
index d4440480..224e5d04 100644
--- a/src/components/build.astro
+++ b/src/components/build.astro
@@ -4,7 +4,11 @@ import { Trans } from "astro-i18next/components";
async function fetchGitHub() {
try {
- const response = await fetch('https://api.github.com/repos/WiiLink24/WiiLink-Patcher-GUI/releases/latest');
+ const response = await fetch('https://api.github.com/repos/WiiLink24/WiiLink-Patcher-GUI/releases/latest', {
+ headers: {
+ 'Authorization': `Bearer ${import.meta.env.GITHUB_TOKEN}`
+ }
+ });
const data = await response.json();
return data || {};
} catch (error) {
From 200a593ed5ea63c4a37e504c89872d4c71e3d646 Mon Sep 17 00:00:00 2001
From: Alex <80858832+Humanoidear@users.noreply.github.com>
Date: Mon, 1 Jun 2026 23:27:55 +0200
Subject: [PATCH 2/2] Chore: Regen i18.
---
src/pages/ca/je/privacy-policy.astro | 285 +------------
src/pages/ca/je/tos.astro | 382 +-----------------
.../ca/privacy-policy/accounts/index.astro | 9 +-
src/pages/ca/privacy-policy/index.astro | 35 +-
.../ca/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/ca/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/de/je/privacy-policy.astro | 285 +------------
src/pages/de/je/tos.astro | 382 +-----------------
.../de/privacy-policy/accounts/index.astro | 9 +-
src/pages/de/privacy-policy/index.astro | 35 +-
.../de/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/de/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/en-GB/je/privacy-policy.astro | 285 +------------
src/pages/en-GB/je/tos.astro | 382 +-----------------
.../en-GB/privacy-policy/accounts/index.astro | 9 +-
src/pages/en-GB/privacy-policy/index.astro | 35 +-
.../en-GB/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/en-GB/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/es-LAT/je/privacy-policy.astro | 285 +------------
src/pages/es-LAT/je/tos.astro | 382 +-----------------
.../privacy-policy/accounts/index.astro | 9 +-
src/pages/es-LAT/privacy-policy/index.astro | 35 +-
.../privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/es-LAT/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/es/je/privacy-policy.astro | 285 +------------
src/pages/es/je/tos.astro | 382 +-----------------
.../es/privacy-policy/accounts/index.astro | 9 +-
src/pages/es/privacy-policy/index.astro | 35 +-
.../es/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/es/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/fi/je/privacy-policy.astro | 285 +------------
src/pages/fi/je/tos.astro | 382 +-----------------
.../fi/privacy-policy/accounts/index.astro | 9 +-
src/pages/fi/privacy-policy/index.astro | 35 +-
.../fi/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/fi/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/fr/je/privacy-policy.astro | 285 +------------
src/pages/fr/je/tos.astro | 382 +-----------------
.../fr/privacy-policy/accounts/index.astro | 9 +-
src/pages/fr/privacy-policy/index.astro | 35 +-
.../fr/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/fr/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/frp/je/privacy-policy.astro | 285 +------------
src/pages/frp/je/tos.astro | 382 +-----------------
.../frp/privacy-policy/accounts/index.astro | 9 +-
src/pages/frp/privacy-policy/index.astro | 35 +-
.../frp/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/frp/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/hu/je/privacy-policy.astro | 285 +------------
src/pages/hu/je/tos.astro | 382 +-----------------
.../hu/privacy-policy/accounts/index.astro | 9 +-
src/pages/hu/privacy-policy/index.astro | 35 +-
.../hu/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/hu/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/it/je/privacy-policy.astro | 285 +------------
src/pages/it/je/tos.astro | 382 +-----------------
.../it/privacy-policy/accounts/index.astro | 9 +-
src/pages/it/privacy-policy/index.astro | 35 +-
.../it/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/it/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/ja/je/privacy-policy.astro | 285 +------------
src/pages/ja/je/tos.astro | 382 +-----------------
.../ja/privacy-policy/accounts/index.astro | 9 +-
src/pages/ja/privacy-policy/index.astro | 35 +-
.../ja/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/ja/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/ko-KR/je/privacy-policy.astro | 285 +------------
src/pages/ko-KR/je/tos.astro | 382 +-----------------
.../ko-KR/privacy-policy/accounts/index.astro | 9 +-
src/pages/ko-KR/privacy-policy/index.astro | 35 +-
.../ko-KR/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/ko-KR/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/pt-BR/je/privacy-policy.astro | 285 +------------
src/pages/pt-BR/je/tos.astro | 382 +-----------------
.../pt-BR/privacy-policy/accounts/index.astro | 9 +-
src/pages/pt-BR/privacy-policy/index.astro | 35 +-
.../pt-BR/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/pt-BR/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/pt-PT/je/privacy-policy.astro | 285 +------------
src/pages/pt-PT/je/tos.astro | 382 +-----------------
.../pt-PT/privacy-policy/accounts/index.astro | 9 +-
src/pages/pt-PT/privacy-policy/index.astro | 35 +-
.../pt-PT/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/pt-PT/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/ru/je/privacy-policy.astro | 285 +------------
src/pages/ru/je/tos.astro | 382 +-----------------
.../ru/privacy-policy/accounts/index.astro | 9 +-
src/pages/ru/privacy-policy/index.astro | 35 +-
.../ru/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/ru/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/tr/je/privacy-policy.astro | 285 +------------
src/pages/tr/je/tos.astro | 382 +-----------------
.../tr/privacy-policy/accounts/index.astro | 9 +-
src/pages/tr/privacy-policy/index.astro | 35 +-
.../tr/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/tr/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/va/je/privacy-policy.astro | 285 +------------
src/pages/va/je/tos.astro | 382 +-----------------
.../va/privacy-policy/accounts/index.astro | 9 +-
src/pages/va/privacy-policy/index.astro | 35 +-
.../va/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/va/tos/just-eat/index.astro | 380 +++++++++++++++++
src/pages/vi/je/privacy-policy.astro | 285 +------------
src/pages/vi/je/tos.astro | 382 +-----------------
.../vi/privacy-policy/accounts/index.astro | 9 +-
src/pages/vi/privacy-policy/index.astro | 35 +-
.../vi/privacy-policy/just-eat/index.astro | 283 +++++++++++++
src/pages/vi/tos/just-eat/index.astro | 380 +++++++++++++++++
108 files changed, 12564 insertions(+), 12168 deletions(-)
create mode 100644 src/pages/ca/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/ca/tos/just-eat/index.astro
create mode 100644 src/pages/de/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/de/tos/just-eat/index.astro
create mode 100644 src/pages/en-GB/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/en-GB/tos/just-eat/index.astro
create mode 100644 src/pages/es-LAT/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/es-LAT/tos/just-eat/index.astro
create mode 100644 src/pages/es/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/es/tos/just-eat/index.astro
create mode 100644 src/pages/fi/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/fi/tos/just-eat/index.astro
create mode 100644 src/pages/fr/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/fr/tos/just-eat/index.astro
create mode 100644 src/pages/frp/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/frp/tos/just-eat/index.astro
create mode 100644 src/pages/hu/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/hu/tos/just-eat/index.astro
create mode 100644 src/pages/it/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/it/tos/just-eat/index.astro
create mode 100644 src/pages/ja/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/ja/tos/just-eat/index.astro
create mode 100644 src/pages/ko-KR/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/ko-KR/tos/just-eat/index.astro
create mode 100644 src/pages/pt-BR/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/pt-BR/tos/just-eat/index.astro
create mode 100644 src/pages/pt-PT/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/pt-PT/tos/just-eat/index.astro
create mode 100644 src/pages/ru/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/ru/tos/just-eat/index.astro
create mode 100644 src/pages/tr/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/tr/tos/just-eat/index.astro
create mode 100644 src/pages/va/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/va/tos/just-eat/index.astro
create mode 100644 src/pages/vi/privacy-policy/just-eat/index.astro
create mode 100644 src/pages/vi/tos/just-eat/index.astro
diff --git a/src/pages/ca/je/privacy-policy.astro b/src/pages/ca/je/privacy-policy.astro
index 6131b476..334124ad 100644
--- a/src/pages/ca/je/privacy-policy.astro
+++ b/src/pages/ca/je/privacy-policy.astro
@@ -1,290 +1,7 @@
---
import { changeLanguage } from "i18next";
-import Header from "../../../components/Header.astro";
-import Footer from "../../../components/Footer.astro";
-import Layout from "../../../layouts/Layout.astro";
changeLanguage("ca");
---
-
- Last updated: July 29, 2025
- When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface: All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely. We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data. We use your information only to: We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy. We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible. Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication. We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties. Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately. Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis. Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system. The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws. We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy. For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
- Last updated: July 29, 2025
-
- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that
- lets you order food via JustEat from your Wii console. It is not
- affiliated with Nintendo or JustEat and is provided "as is" without
- any sponsorship or endorsement. Nintendo and JustEat retain all
- rights to their names and services. By using Food Channel and its
- web-based pay system (which uses PayPal for payments), you
- agree to these terms. Use of the service is at your sole risk, and
- we make no warranties or guarantees about its operation or the
- results it provides. Your use of the Service is at your sole risk.
- The Service is provided on an "as is" and "as available" basis
- without any warranty or condition. You must read and agree to all
- terms before using the service.
-
- You must be at least 16 years old to use this service. If you are
- between 16 and 18, you must have parental supervision and consent
- while using the service. Persons under 13 are not allowed to use it
- at all (consistent with WiiLink policy). By registering, you confirm
- that you meet the age requirements and that any information you
- provide is accurate.
-
- To use Food Channel JustEat you must create a persistent user account (via
- WiiLink). You agree to provide accurate and complete information
- when registering. This includes your name, valid email, and any other required details. You
- are responsible for keeping your account password and credentials
- secure; we will not be liable for any loss or damage if you fail to
- safeguard your account. You may not use the service for any illegal
- purpose or violate any laws in your jurisdiction. We reserve the
- right to refuse service, suspend or terminate accounts at our
- discretion if you violate any terms.
-
- Food Channel allows you to browse local restaurants and place orders
- through JustEat's network. You are responsible for verifying that
- all order details (items, quantities, special instructions) and your
- delivery location are entered correctly. All orders are submitted
- through our web interface and paid via PayPal. We do not process or
- store your financial details – only a payment token (reference from
- PayPal) is used to complete the transaction. Once your payment is
- authorized by PayPal, the order is sent to the restaurant. All sales
- are final once payment is made. By confirming an order and payment,
- you enter a binding contract with the restaurant to supply the food.
- We do not guarantee availability of any item or honor of any offer
- on the menus.
-
- Restaurants or couriers arrange delivery. We do not coordinate
- the order nor control delivery performance. Delivery times
- are estimates only, and delays can occur. We expressly disclaim any
- responsibility for late, lost, damaged, or spoiled orders. Any
- delivery time is an estimate, and we assume no responsibility for
- any losses resulting from delays or errors in order delivery. Once
- an order is delivered, we are no longer responsible for the order.
- We will not be responsible for the Order (including the quality or
- safety of the contents) after delivering the Order.
-
- If you are not present or provide incorrect address details, or the
- restaurant fails to deliver, these are risks you assume. We
- encourage you to provide clear instructions and be available. Any
- issue with the delivered items (missing items, quality complaints)
- must be resolved directly with the restaurant or courier. We have no
- control over the restaurant's food quality or preparation practices,
- and we disclaim all liability for it. An intermediary service does
- not guarantee in any way the quality of any delivered products…
- despite our efforts we cannot guarantee that the menu or services
- offered… perfectly match what is presented.
-
- We are not liable for any indirect,
- incidental, special, or consequential damages arising from your use
- of the service or inability to use it. This includes, but is not
- limited to, lost profits, loss of data, loss of enjoyment, or any
- issues stemming from order problems or account issues. For instance,
- if you get charged and your food doesn't arrive, we are not
- responsible – your remedy is with the restaurant or delivery
- service. We do not guarantee that any errors in the service will be
- corrected, that the service will be uninterrupted, or that it is
- secure. We expressly disclaim all warranties, whether express,
- implied or statutory, including merchantability and fitness for a
- particular purpose.
-
- We are also not responsible for damages to your Wii console or
- network arising from using any Wii homebrew or third-party code.
- WiiLink is NOT responsible for any possible damages that may occur
- to your Wii Console as a result of the use and installation of
- WiiLink Content. By using Food Channel (which runs through WiiLink),
- you agree that any modifications to your Wii are at your own risk
- and Nintendo's terms still apply.
-
- We also disclaim responsibility for any action taken by JustEat or
- Nintendo against your account. Using a fan-made channel may violate
- JustEat's terms of service, potentially leading to account
- restrictions or bans. We are not liable for any such bans or
- restrictions. Likewise, we do not guarantee compatibility with
- future updates of the Wii or Nintendo's network services. Use this
- service as a convenience, at your own risk.
-
- All content (menus, images, trademarks) belongs to the restaurants
- and JustEat. We act merely as an intermediary. We do not own, sell
- or produce any food. We are not responsible for third-party content
- or policies. Any links or references to third-party sites (including
- PayPal and Discord) are provided as-is; we do not endorse them. You
- agree not to upload any illegal or infringing material in any
- user-driven part of our service.
-
- We reserve the right to modify or discontinue the service at any
- time without notice. We may suspend or terminate your access if you
- violate the terms. You may also close your account at any time via
- the WiiLink interface; doing so will end this agreement.
-
- These terms are governed by the laws of Canada (WiiLink's home
- jurisdiction). Any disputes will be subject to Canadian law.
-
- If you encounter issues or want to request help, support is provided
- only via our Discord or email. You agree that we have no obligation
- to provide support, and any assistance is provided on a case-by-case
- basis. Contacting our Discord "support" channel is the primary way
- to reach us. Do not expect phone support or guaranteed response
- times. For any inquiries (including appeals about account issues or
- delivery problems), please use the Discord or the support email
- listed there.
-
- By using Food Channel and making orders, you acknowledge that you have
- read and agree to these Terms of Service.
-
- Privacy Policy for Food Channel JustEat
- Information We Collect
-
-
- Data Retention and Deletion
- Use of Your Data
-
-
- Security
- Cookies and Tracking
- Third-Party Services
- Children's Privacy
- Your Rights
- Retention of Account Data
- International Use
- Policy Updates
- Contact
- Summary of Privacy Points
-
-
-
-
- Terms of Service for Food Channel JustEat
- Terms of Service
-
- Service Description
- Eligibility
- Account Registration
- Ordering and Payment
- Delivery
- Disclaimers and Limitation of Liability
- Intellectual Property and Third Parties
- Termination
- Governing Law
- Support and Contact
- Summary of Key Points
-
-
-
- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/ca/privacy-policy/index.astro b/src/pages/ca/privacy-policy/index.astro index 8857aea0..8c03e6c7 100644 --- a/src/pages/ca/privacy-policy/index.astro +++ b/src/pages/ca/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("ca"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("ca");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("ca"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/de/privacy-policy/index.astro b/src/pages/de/privacy-policy/index.astro index dbd3de71..3212c128 100644 --- a/src/pages/de/privacy-policy/index.astro +++ b/src/pages/de/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("de"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("de");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("de"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/en-GB/privacy-policy/index.astro b/src/pages/en-GB/privacy-policy/index.astro index 29b7d04d..2746a61d 100644 --- a/src/pages/en-GB/privacy-policy/index.astro +++ b/src/pages/en-GB/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("en-GB"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("en-GB");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("en-GB"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/es-LAT/privacy-policy/index.astro b/src/pages/es-LAT/privacy-policy/index.astro index bf587b7f..d3980348 100644 --- a/src/pages/es-LAT/privacy-policy/index.astro +++ b/src/pages/es-LAT/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("es-LAT"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("es-LAT");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("es-LAT"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/es/privacy-policy/index.astro b/src/pages/es/privacy-policy/index.astro index f2631870..962ac070 100644 --- a/src/pages/es/privacy-policy/index.astro +++ b/src/pages/es/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("es"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("es");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("es"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/fi/privacy-policy/index.astro b/src/pages/fi/privacy-policy/index.astro index 3f38c7f5..d7b4ad0a 100644 --- a/src/pages/fi/privacy-policy/index.astro +++ b/src/pages/fi/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("fi"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("fi");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("fi"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/fr/privacy-policy/index.astro b/src/pages/fr/privacy-policy/index.astro index 08d171fa..230d457c 100644 --- a/src/pages/fr/privacy-policy/index.astro +++ b/src/pages/fr/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("fr"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("fr");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("fr"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/frp/privacy-policy/index.astro b/src/pages/frp/privacy-policy/index.astro index 513e0f01..f354602d 100644 --- a/src/pages/frp/privacy-policy/index.astro +++ b/src/pages/frp/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("frp"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("frp");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("frp"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/hu/privacy-policy/index.astro b/src/pages/hu/privacy-policy/index.astro index 9623a783..71cb4a0f 100644 --- a/src/pages/hu/privacy-policy/index.astro +++ b/src/pages/hu/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("hu"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("hu");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("hu"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/it/privacy-policy/index.astro b/src/pages/it/privacy-policy/index.astro index 0fa27b65..cd15a0bf 100644 --- a/src/pages/it/privacy-policy/index.astro +++ b/src/pages/it/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("it"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("it");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("it"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/ja/privacy-policy/index.astro b/src/pages/ja/privacy-policy/index.astro index 1f94269d..365343cf 100644 --- a/src/pages/ja/privacy-policy/index.astro +++ b/src/pages/ja/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("ja"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("ja");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("ja"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/ko-KR/privacy-policy/index.astro b/src/pages/ko-KR/privacy-policy/index.astro index eb701091..45e380cc 100644 --- a/src/pages/ko-KR/privacy-policy/index.astro +++ b/src/pages/ko-KR/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("ko-KR"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("ko-KR");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("ko-KR"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/pt-BR/privacy-policy/index.astro b/src/pages/pt-BR/privacy-policy/index.astro index bd5236d2..51332126 100644 --- a/src/pages/pt-BR/privacy-policy/index.astro +++ b/src/pages/pt-BR/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("pt-BR"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("pt-BR");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("pt-BR"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/pt-PT/privacy-policy/index.astro b/src/pages/pt-PT/privacy-policy/index.astro index 5b2e9ae1..b2f51c42 100644 --- a/src/pages/pt-PT/privacy-policy/index.astro +++ b/src/pages/pt-PT/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("pt-PT"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("pt-PT");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("pt-PT"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/ru/privacy-policy/index.astro b/src/pages/ru/privacy-policy/index.astro index 2d59a957..e9494907 100644 --- a/src/pages/ru/privacy-policy/index.astro +++ b/src/pages/ru/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("ru"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("ru");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("ru"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/tr/privacy-policy/index.astro b/src/pages/tr/privacy-policy/index.astro index e05000ea..463130dd 100644 --- a/src/pages/tr/privacy-policy/index.astro +++ b/src/pages/tr/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("tr"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("tr");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("tr"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/va/privacy-policy/index.astro b/src/pages/va/privacy-policy/index.astro index 6532e0a9..62726ad6 100644 --- a/src/pages/va/privacy-policy/index.astro +++ b/src/pages/va/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("va"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("va");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("va"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+
- - Last updated: July 29, 2025 -
- - -When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
-All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. Your payment token is required to verify the PayPal payment for that order. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
-We immediately delete all temporary order information (location, order details, PayPal token) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
-We use your information only to:
-We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Except for PayPal and delivery services, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
-We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your PayPal account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
-Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on PayPal's own secure flow for payment authentication.
-We integrate with PayPal for payments, JustEat for restaurant ordering, and Discord for support. These services have their own privacy policies. For example, PayPal handles your credit card or PayPal account data directly. We only see a token confirming payment, which we delete. We have no control over these third-party data practices, but we do not share your data with any other third parties.
-Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
-Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
-Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
-The service is available globally. We store and process your data on our servers in Canada. By using the service, you consent to transferring data to Canada and processing it under Canadian privacy laws.
-We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
-For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
-
- - Last updated: July 29, 2025 -
- -- Food Channel JustEat is an unofficial, fan-made modification of a Wii Channel application that - lets you order food via JustEat from your Wii console. It is not - affiliated with Nintendo or JustEat and is provided "as is" without - any sponsorship or endorsement. Nintendo and JustEat retain all - rights to their names and services. By using Food Channel and its - web-based pay system (which uses PayPal for payments), you - agree to these terms. Use of the service is at your sole risk, and - we make no warranties or guarantees about its operation or the - results it provides. Your use of the Service is at your sole risk. - The Service is provided on an "as is" and "as available" basis - without any warranty or condition. You must read and agree to all - terms before using the service. -
-- You must be at least 16 years old to use this service. If you are - between 16 and 18, you must have parental supervision and consent - while using the service. Persons under 13 are not allowed to use it - at all (consistent with WiiLink policy). By registering, you confirm - that you meet the age requirements and that any information you - provide is accurate. -
-- To use Food Channel JustEat you must create a persistent user account (via - WiiLink). You agree to provide accurate and complete information - when registering. This includes your name, valid email, and any other required details. You - are responsible for keeping your account password and credentials - secure; we will not be liable for any loss or damage if you fail to - safeguard your account. You may not use the service for any illegal - purpose or violate any laws in your jurisdiction. We reserve the - right to refuse service, suspend or terminate accounts at our - discretion if you violate any terms. -
-- Food Channel allows you to browse local restaurants and place orders - through JustEat's network. You are responsible for verifying that - all order details (items, quantities, special instructions) and your - delivery location are entered correctly. All orders are submitted - through our web interface and paid via PayPal. We do not process or - store your financial details – only a payment token (reference from - PayPal) is used to complete the transaction. Once your payment is - authorized by PayPal, the order is sent to the restaurant. All sales - are final once payment is made. By confirming an order and payment, - you enter a binding contract with the restaurant to supply the food. - We do not guarantee availability of any item or honor of any offer - on the menus. -
-- Restaurants or couriers arrange delivery. We do not coordinate - the order nor control delivery performance. Delivery times - are estimates only, and delays can occur. We expressly disclaim any - responsibility for late, lost, damaged, or spoiled orders. Any - delivery time is an estimate, and we assume no responsibility for - any losses resulting from delays or errors in order delivery. Once - an order is delivered, we are no longer responsible for the order. - We will not be responsible for the Order (including the quality or - safety of the contents) after delivering the Order. -
- -- If you are not present or provide incorrect address details, or the - restaurant fails to deliver, these are risks you assume. We - encourage you to provide clear instructions and be available. Any - issue with the delivered items (missing items, quality complaints) - must be resolved directly with the restaurant or courier. We have no - control over the restaurant's food quality or preparation practices, - and we disclaim all liability for it. An intermediary service does - not guarantee in any way the quality of any delivered products… - despite our efforts we cannot guarantee that the menu or services - offered… perfectly match what is presented. -
-- We are not liable for any indirect, - incidental, special, or consequential damages arising from your use - of the service or inability to use it. This includes, but is not - limited to, lost profits, loss of data, loss of enjoyment, or any - issues stemming from order problems or account issues. For instance, - if you get charged and your food doesn't arrive, we are not - responsible – your remedy is with the restaurant or delivery - service. We do not guarantee that any errors in the service will be - corrected, that the service will be uninterrupted, or that it is - secure. We expressly disclaim all warranties, whether express, - implied or statutory, including merchantability and fitness for a - particular purpose. -
- -- We are also not responsible for damages to your Wii console or - network arising from using any Wii homebrew or third-party code. - WiiLink is NOT responsible for any possible damages that may occur - to your Wii Console as a result of the use and installation of - WiiLink Content. By using Food Channel (which runs through WiiLink), - you agree that any modifications to your Wii are at your own risk - and Nintendo's terms still apply. -
- -- We also disclaim responsibility for any action taken by JustEat or - Nintendo against your account. Using a fan-made channel may violate - JustEat's terms of service, potentially leading to account - restrictions or bans. We are not liable for any such bans or - restrictions. Likewise, we do not guarantee compatibility with - future updates of the Wii or Nintendo's network services. Use this - service as a convenience, at your own risk. -
-- All content (menus, images, trademarks) belongs to the restaurants - and JustEat. We act merely as an intermediary. We do not own, sell - or produce any food. We are not responsible for third-party content - or policies. Any links or references to third-party sites (including - PayPal and Discord) are provided as-is; we do not endorse them. You - agree not to upload any illegal or infringing material in any - user-driven part of our service. -
-- We reserve the right to modify or discontinue the service at any - time without notice. We may suspend or terminate your access if you - violate the terms. You may also close your account at any time via - the WiiLink interface; doing so will end this agreement. -
-- These terms are governed by the laws of Canada (WiiLink's home - jurisdiction). Any disputes will be subject to Canadian law. -
-- If you encounter issues or want to request help, support is provided - only via our Discord or email. You agree that we have no obligation - to provide support, and any assistance is provided on a case-by-case - basis. Contacting our Discord "support" channel is the primary way - to reach us. Do not expect phone support or guaranteed response - times. For any inquiries (including appeals about account issues or - delivery problems), please use the Discord or the support email - listed there. -
-- By using Food Channel and making orders, you acknowledge that you have - read and agree to these Terms of Service. -
-- Tuesday, November 4th, 2025 + Saturday, April 4th, 2026
diff --git a/src/pages/vi/privacy-policy/index.astro b/src/pages/vi/privacy-policy/index.astro index 71d67cda..dcea4a3b 100644 --- a/src/pages/vi/privacy-policy/index.astro +++ b/src/pages/vi/privacy-policy/index.astro @@ -21,7 +21,7 @@ changeLanguage("vi"); class="update" style="width:270px; top:20px; right:0; padding:10px; border-radius:8px; font-size:20px; font-family:inter; background-color:#00000060; position:absolute;" class="updated"> - Last updated: 04/11/2025 + Last updated: 11/04/2026What do we access?
When you use our services, our web server, nginx, logs your IP address. - Additionally, your Wii Number, and any other data you provide to our - services, is stored to allow these services to function correctly. + Additionally, your console's Wii Number, MAC Address, Serial Number, and + any data you provide to our services (such as Miis submitted to contests, + polls you vote on, etc), is stored to allow these services to function + correctly.WiiLink Checkout
+ We have a service, known as "WiiLink Checkout", available at + https://checkout.wiilink.ca. + Through this site, you can view your records (such as playtime shared + through Nintendo Channel, EVC voting history, etc), as well as those + of other users of WiiLink. If your console is not linked to a WiiLink + Account, this data is used in overall statistics on the site, and can + be viewed using your serial number. If you link your console to an + account, you gain the ability to enable a public profile, allowing + people to see your Wii Number alongside your data. +Additional policies
Some of our services have their own privacy policies, separate to the main one here. These are the following services: @@ -58,13 +75,15 @@ changeLanguage("vi");Changes to this Privacy Policy
- It is our policy to inform the consumers to any changes to this privacy + It is our policy to inform our users of any changes to this privacy policy. If there is a change, you will be notified through our Discord server. The revision date of the privacy policy is at the bottom of the page. @@ -73,7 +92,7 @@ changeLanguage("vi"); Last Modified- Tuesday, November 4th, 2025 + Saturday, April 11th, 2026
+ + Last updated: April 11, 2026 +
+ + +When you use Food Channel, we collect the following personal data via your WiiLink account and our payment interface:
+All of this data is used solely to process and fulfill your order. The precise location data is needed to find nearby restaurants. We keep this data only as long as necessary to complete the order, minus support messages which are stored indefinitely.
+We immediately delete all temporary order information (location, order details) once the payment is successfully completed and the restaurant has accepted the order. This means that after each transaction, only your registered name and email remain in our system to maintain your account. As an example of best practice, other services state they "will only keep a payment token to process your payment"; we similarly delete all such transactional tokens promptly. In short: we do not retain your location, order or payment details longer than needed. You may delete your account at any time (via the WiiLink interface or by contacting us) which removes all your stored data.
+We use your information only to:
+We do not use your data for marketing, nor do we share or sell it to advertisers or other third parties. Other than Just Eat, no external party receives your personal details from us. We operate our own servers ("no third-party servers") and keep your data in-house for maximum privacy.
+We implement reasonable security measures to protect your data. However, no system is perfectly secure, so you acknowledge the inherent risks of Internet and homebrew usage. Use strong, unique passwords for your WiiLink account and your Just Eat account. We follow WiiLink's approach of commitment to privacy: "We are committed to protecting the privacy and security of your personal information". Data is transmitted over secure channels when possible.
+Our web UI uses minimal cookies for session management only. We do not engage in behavioral tracking or profiling. We rely on Just Eat's own secure flow for payments.
+We integrate with Just Eat for ordering, and Discord for support. These services have their own privacy policies. We have no control over these third-party data practices, but we do not share your data with any other third parties.
+Users under 16 should only use this service with parental guidance. We do not knowingly collect personal data from children under 13. If we learn that we have inadvertently collected data from a child under 13, we will delete it immediately.
+Depending on your jurisdiction, you may have rights to access, correct, or delete your personal data. We honor such requests to the extent required by law. To request deletion of your data or for any privacy inquiries, please contact us via our support channels. Specifically, as stated in our support terms, you can join the WiiLink Discord and ask for data deletion or help. You may also email support. We will respond to legitimate requests within a reasonable timeframe, though we note that support is provided on a case-by-case basis.
+Even after you stop ordering, your WiiLink account (name and email) is retained until you delete it. This allows you to log in later to place new orders without re-entering information. If you wish, you can delete your account by contacting us on Discord or via email, and we will remove your profile and personal data (email and name) from our system.
+We may update this Privacy Policy over time (for example, to comply with new laws). The latest version is always available in the Food Channel and on our website. Changes become effective immediately upon posting. By continuing to use the service, you agree to the updated policy.
+For any questions or requests about privacy, data access or deletion, please join our official Discord server and post in the "support" channel, or send an email to our support team. Our support staff will assist you. Please do not share sensitive data in Discord chat; use private messages or email if needed.
+
+ + Last updated: April 11, 2026 +
+ ++ Food Channel Just Eat is an unofficial, fan-made modification of a Wii + Channel application that lets you order food via Just Eat from your + Wii console. It is not affiliated with Nintendo or Just Eat and is + provided "as is" without any sponsorship or endorsement. Nintendo + and Just Eat retain all rights to their names and services. By using + Food Channel and its web-based pay system, you agree to these terms. + Use of the service is at your sole risk, and we make no warranties + or guarantees about its operation or the results it provides. Your + use of the Service is at your sole risk. The Service is provided on + an "as is" and "as available" basis without any warranty or condition. + You must read and agree to all terms before using the service. +
++ You must be at least 16 years old to use this service. If you are + between 16 and 18, you must have parental supervision and consent + while using the service. By registering, you confirm that you meet + the age requirements and that any information you provide is + accurate. +
++ To use Food Channel Just Eat you must create a persistent user account (via + WiiLink). You agree to provide accurate and complete information + when registering. This includes your name, valid email, and any other required details. You + are responsible for keeping your account password and credentials + secure; we will not be liable for any loss or damage if you fail to + safeguard your account. You may not use the service for any illegal + purpose or violate any laws in your jurisdiction. We reserve the + right to refuse service, suspend or terminate accounts at our + discretion if you violate any terms. +
++ Food Channel allows you to browse local restaurants and place orders + through Just Eat's network. You are responsible for verifying that + all order details (items, quantities, special instructions) and your + delivery location are entered correctly. All orders are submitted + through our web interface and paid via Just Eat. We do not process or + store your financial details. Once your payment is placed via Just Eat, + the order is sent to the restaurant. All sales are final once payment + is made. By confirming an order and payment, you enter a binding + contract with the restaurant to supply the food. We do not guarantee + availability of any item or honor of any offer on the menus. +
++ Restaurants or couriers arrange delivery. We do not coordinate + the order nor control delivery performance. Delivery times + are estimates only, and delays can occur. We expressly disclaim any + responsibility for late, lost, damaged, or spoiled orders. Any + delivery time is an estimate, and we assume no responsibility for + any losses resulting from delays or errors in order delivery. +
+ ++ If you are not present or provide incorrect address details, or the + restaurant fails to deliver, these are risks you assume. We + encourage you to provide clear instructions and be available. Any + issue with the delivered items (missing items, quality complaints) + must be resolved directly with the restaurant or courier. We have no + control over the restaurant's food quality or preparation practices, + and we disclaim all liability for it. An intermediary service does + not guarantee in any way the quality of any delivered products - + despite our efforts we cannot guarantee that the menu or services + offered perfectly match what is presented. +
++ We are not liable for any indirect, + incidental, special, or consequential damages arising from your use + of the service or inability to use it. This includes, but is not + limited to, lost profits, loss of data, loss of enjoyment, or any + issues stemming from order problems or account issues. For instance, + if you get charged and your food doesn't arrive, we are not + responsible – your remedy is with the restaurant or delivery + service. We do not guarantee that any errors in the service will be + corrected, that the service will be uninterrupted, or that it is + secure. We expressly disclaim all warranties, whether express, + implied or statutory, including merchantability and fitness for a + particular purpose. +
+ ++ We are also not responsible for damages to your Wii console or + network arising from using any Wii homebrew or third-party code. + WiiLink is NOT responsible for any possible damages that may occur + to your Wii Console as a result of the use and installation of + WiiLink Content. By using Food Channel (which runs through WiiLink), + you agree that any modifications to your Wii are at your own risk + and Nintendo's terms still apply. +
+ ++ We also disclaim responsibility for any action taken by Just Eat or + Nintendo against your account. Using a fan-made channel may violate + Just Eat's terms of service, potentially leading to account + restrictions or bans. We are not liable for any such bans or + restrictions. Likewise, we do not guarantee compatibility with + future updates of the Wii or Nintendo's network services. Use this + service as a convenience, at your own risk. +
++ All content (menus, images, trademarks) belongs to the restaurants + and Just Eat. We act merely as an intermediary. We do not own, sell + or produce any food. We are not responsible for third-party content + or policies. Any links or references to third-party sites (including + Just Eat and Discord) are provided as-is; we do not endorse them. You + agree not to upload any illegal or infringing material in any + user-driven part of our service. +
++ We reserve the right to modify or discontinue the service at any + time without notice. We may suspend or terminate your access if you + violate the terms. You may also close your account at any time via + the WiiLink interface; doing so will end this agreement. +
++ These terms are governed by the laws of Canada (WiiLink's home + jurisdiction). Any disputes will be subject to Canadian law. +
++ If you encounter issues or want to request help, support is provided + only via our Discord or email. You agree that we have no obligation + to provide support, and any assistance is provided on a case-by-case + basis. Contacting our Discord "support" channel is the primary way + to reach us. Do not expect phone support or guaranteed response + times. For any inquiries (including appeals about account issues or + delivery problems), please use the Discord or the support email + listed there. +
++ By using Food Channel and making orders, you acknowledge that you have + read and agree to these Terms of Service. +
+