Skip to content

Commit

Permalink
docs: rename Polkagate to PolkaGate
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-1979 committed Sep 26, 2024
1 parent 997ea77 commit b3cf569
Show file tree
Hide file tree
Showing 19 changed files with 43 additions and 43 deletions.
4 changes: 2 additions & 2 deletions Privacy Policy.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<img src="https://raw.githubusercontent.com/Nick-1979/PolkadotJsPlusPictures/main/polkagate/logo/534b.PNG" data-canonical-src="https://raw.githubusercontent.com/Nick-1979/PolkadotJsPlusPictures/main/polkagate/logo/534b.PNG" width="100" height="100" />

# Privacy Policy for Polkagate Extension
# Privacy Policy for PolkaGate Extension
![license](https://img.shields.io/badge/License-Apache%202.0-blue?logo=apache&style=flat-square)
![supported by](https://img.shields.io/badge/Supported%20by-Kusama%20Treasury-%20black?logo=polkadot&style=flat-square)

PolkaGate ("us", "we", or "our") operates the Polkagate extension browser extension (the "Service").
PolkaGate ("us", "we", or "our") operates the PolkaGate extension browser extension (the "Service").

This page informs you that we do not collect any personal information while you use our Service. You can use our Service with the confidence that we do not collect, store, or share any of your personal information.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

A user-friendly wallet for seamless browser-based interaction with Polkadot/Substrate-based blockchains. It allows users to access their Polkadot/Kusama ecosystem account(s), which can also be used to interact with decentralized apps. It injects a [@polkadot/api](https://github.com/polkadot-js/api) signer into a page, along with any associated accounts.

Polkagate extension not only has all the abilities of the original Polkadot extension, but also many new functionalities as listed below are available, where more features are coming.
PolkaGate extension not only has all the abilities of the original Polkadot extension, but also many new functionalities as listed below are available, where more features are coming.

## Functionalities

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ export default class Extension {
private windowOpen (path: AllowedPath): boolean {
const url = `${chrome.runtime.getURL('index.html')}#${path}`;

if (!ALLOWED_PATH.includes(path as any) && !START_WITH_PATH.find((p) => path.startsWith(p))) { // added for Polkagate, updated
if (!ALLOWED_PATH.includes(path as any) && !START_WITH_PATH.find((p) => path.startsWith(p))) { // added for PolkaGate, updated
console.error('Not allowed to open the url:', url);

return false;
Expand Down
4 changes: 2 additions & 2 deletions packages/extension-base/src/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0

const ALLOWED_PATH = ['/', '/account/import-ledger', '/account/restore-json', '/onboarding'] as const;
// Added for Polkagate
// Added for PolkaGate
const START_WITH_PATH = [
'/account/',
'/accountfs/',
Expand Down Expand Up @@ -39,5 +39,5 @@ export {
PHISHING_PAGE_REDIRECT,
PORT_CONTENT,
PORT_EXTENSION,
START_WITH_PATH// Added for Polkagate
START_WITH_PATH// Added for PolkaGate
};
2 changes: 1 addition & 1 deletion packages/extension-polkagate/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# ![Polkagate extension](docs/logo.jpg)
# ![PolkaGate extension](docs/logo.jpg)

A user-friendly wallet for seamless browser-based interaction with Polkadot/Substrate-based blockchains. It allows users to access their Polkadot account(s), which can also be used to interact with decentralized apps.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export default function ChooseDelegator({ setDelegateInformation, setStep }: Pro
<Grid container item>
<Grid container justifyContent='space-between' pb='5px'>
<Grid item>
<Infotip2 showQuestionMark text={'These are the trusted accounts listed by Polkagate, and we will regularly update the list. Please contact us if you would like to be included.'}>
<Infotip2 showQuestionMark text={'These are the trusted accounts listed by PolkaGate, and we will regularly update the list. Please contact us if you would like to be included.'}>
<Typography fontSize='16px' fontWeight={400} sx={{ textAlign: 'left' }}>
{t('Choose from Trusted Accounts')}
</Typography>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function Onboarding (): React.ReactElement {
</Grid>
</Grid>
<Typography fontSize='16px' fontWeight={500} pb='15px' pt='30px' width='100%'>
{t('We appreciate your choice in selecting Polkagate as your gateway to the Polkadot ecosystem! 🌟')}
{t('We appreciate your choice in selecting PolkaGate as your gateway to the Polkadot ecosystem! 🌟')}
</Typography>
<Typography fontSize='16px' fontWeight={400} width='100%'>
{t('At present, you do not have any accounts. To begin your journey, you can create your first account, import existing accounts, or explore the demo option to get started.')}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function CreatePool ({ inputs, setInputs, setStep }: Props): Reac

const ED = api && api.consts['balances']['existentialDeposit'] as unknown as BN;
const nextPoolId = poolStakingConsts && poolStakingConsts.lastPoolId.toNumber() + 1;
const DEFAULT_POOLNAME = useMemo(() => `Polkagate 💜${nextPoolId ? ` - ${nextPoolId}` : ''}`, [nextPoolId]);
const DEFAULT_POOLNAME = useMemo(() => `PolkaGate 💜${nextPoolId ? ` - ${nextPoolId}` : ''}`, [nextPoolId]);
const amountAsBN = useMemo(() => amountToMachine(createAmount, decimal), [createAmount, decimal]);

const toReviewDisabled = useMemo(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ export default function useAssetsBalances (accounts: AccountJson[] | null, setAl
return;
}

const assetsToBeFetched = assetsChains[chainName]; /** we fetch asset hubs assets only if it is whitelisted via Polkagate/apps-config */
const assetsToBeFetched = assetsChains[chainName]; /** we fetch asset hubs assets only if it is whitelisted via PolkaGate/apps-config */

return fetchAssetOnAssetHubs(addresses!, chainName, assetsToBeFetched);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const accId = {
display: 'PolkaGate',
email: '[email protected]',
legal: '@polkagate:matrix.org',
riot: 'Polkagate',
riot: 'PolkaGate',
x: '@PolkaGate',
web: 'http://polkagate.xyz'
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function CreatePool(): React.ReactElement {

const ED = api && api.consts['balances']['existentialDeposit'] as unknown as BN;
const nextPoolId = poolStakingConsts && poolStakingConsts.lastPoolId.toNumber() + 1;
const DEFAULT_POOLNAME = `Polkagate 💜${nextPoolId ? ` - ${nextPoolId}` : ''}`;
const DEFAULT_POOLNAME = `PolkaGate 💜${nextPoolId ? ` - ${nextPoolId}` : ''}`;
// const amountAsBN = useMemo(() => ED && (new BN(parseFloat(createAmount ?? '0') * 10 ** decimal)).sub(ED), [ED, createAmount, decimal]);
const amountAsBN = useMemo(() => amountToMachine(createAmount, decimal), [createAmount, decimal]);

Expand Down
2 changes: 1 addition & 1 deletion packages/extension-polkagate/src/popup/welcome/Privacy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function Privacy ({ asModal, setShow, show = false }: Props): React.ReactElement
</Grid>
<Divider sx={{ bgcolor: 'secondary.main', height: '1px', m: '35px auto 15px', width: '240px' }} />
<Typography fontSize='14px' lineHeight={1.4} px='15px'>
{t('Polkagate is a browser extension that lets you use the Polkadot network and decentralized apps. We respect your privacy and do not collect or store any of your personal data. This is how we protect your privacy:')}
{t('PolkaGate is a browser extension that lets you use the Polkadot network and decentralized apps. We respect your privacy and do not collect or store any of your personal data. This is how we protect your privacy:')}
</Typography>
<Box sx={{ backgroundColor: 'background.paper', borderRadius: '5px', fontSize: '14px', m: '20px 15px 17px', maxHeight: '300px', overflowY: 'scroll' }}>
<List sx={{ color: 'text.primary' }}>
Expand Down
2 changes: 1 addition & 1 deletion packages/extension-polkagate/src/util/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export const DEFAULT_POOL_FILTERS = {
};

export const TOTAL_STAKE_HELPER_TEXT = 'Your total amount of stake after completing this transaction.';
export const SYSTEM_SUGGESTION_TEXT = 'Our system suggests trusted, high return, low commission validators. Polkagate assumes no responsibility or liability for any misconduct resulting from the future actions of the validators.';// which not slashed before.' //TODO: add a disclaimer to the text too
export const SYSTEM_SUGGESTION_TEXT = 'Our system suggests trusted, high return, low commission validators. PolkaGate assumes no responsibility or liability for any misconduct resulting from the future actions of the validators.';// which not slashed before.' //TODO: add a disclaimer to the text too

export const REGISTRARS_LIST: { addresses: string[]; index: number; name: string }[] = [
{
Expand Down
4 changes: 2 additions & 2 deletions packages/extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"author": "Polkagate",
"author": "PolkaGate",
"description": "A user-friendly wallet for seamless browser-based interaction with Polkadot/Substrate-based blockchains.",
"homepage_url": "https://polkagate.xyz",
"name": "PolkaGate: The gateway to the Polkadot eco.",
Expand All @@ -17,7 +17,7 @@
"type": "module"
},
"action": {
"default_title": "Polkagate",
"default_title": "PolkaGate",
"default_popup": "index.html"
},
"content_scripts": [
Expand Down
12 changes: 6 additions & 6 deletions packages/extension/public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@
"We do not utilize any trackers or analytics.": "",
"We do not collect keys, addresses, or any personal information. Your data always stays on this device.": "",
"We are committed to respecting your privacy and are not engaged in information collection – not even anonymized data.": "",
"Thank you for choosing Polkagate!": "",
"Thank you for choosing PolkaGate!": "",
"Got it, Take Me In": "",
"Balance": "",
"Transferable": "",
Expand All @@ -1028,7 +1028,7 @@
"Step 1 of 3: Choose trusted friends": "",
"Step 2 of 3: Set details": "",
"Unlock date unknown": "",
"Polkagate is a browser extension that lets you use the Polkadot network and decentralized apps. We respect your privacy and do not collect or store any of your personal data. This is how we protect your privacy:": "",
"PolkaGate is a browser extension that lets you use the Polkadot network and decentralized apps. We respect your privacy and do not collect or store any of your personal data. This is how we protect your privacy:": "",
"We do not collect your clicks, browsing history, keys, addresses, transactions, or any other data.": "",
"We use open-source code, end-to-end encryption, local storage, and secure communication protocols.": "",
"We may update this privacy policy and notify you on our website and extension.": "",
Expand Down Expand Up @@ -1109,7 +1109,7 @@
"You are adding {{addingLength}} Prox{{iesOrY}}": "",
"You are removing {{removingLength}} Prox{{iesOrY}}": "",
"Adding {{addingLength}} and removing {{removingLength}} Proxies": "",
"Our system suggests trusted, high return, low commission validators. Polkagate assumes no responsibility or liability for any misconduct resulting from the future actions of the validators.": "",
"Our system suggests trusted, high return, low commission validators. PolkaGate assumes no responsibility or liability for any misconduct resulting from the future actions of the validators.": "",
"Pick 1 of {{totalNumberOfPools}} to join": "",
"Delegate Vote ({{ step }}/3)": "",
"Comment on {{site}}": "",
Expand All @@ -1125,9 +1125,9 @@
"🔍 Search chain": "",
"Less": "",
"More": "",
"Thank you for choosing Polkagate! 🌟 Your support means the world to us.": "",
"Thank you for choosing PolkaGate! 🌟 Your support means the world to us.": "",
"I already have account(s) and wish to import my existing account(s)": "",
"Thank you for choosing Polkagate, the gateway to the Polkadot ecosystem! 🌟": "",
"Thank you for choosing PolkaGate, the gateway to the Polkadot ecosystem! 🌟": "",
"Less tokens": "",
"More tokens": "",
"Switch chain from top right, or click on an asset if any.": "",
Expand Down Expand Up @@ -1246,7 +1246,7 @@
"Paying": "",
"Paying Confirmation": "",
"Welcome to {{extensionName}}!": "",
"We appreciate your choice in selecting Polkagate as your gateway to the Polkadot ecosystem! 🌟": "",
"We appreciate your choice in selecting PolkaGate as your gateway to the Polkadot ecosystem! 🌟": "",
"At present, you do not have any accounts. To begin your journey, you can create your first account or import existing accounts to get started.": "",
"This account is a validator!": "",
"Social recovery": "",
Expand Down
10 changes: 5 additions & 5 deletions packages/extension/public/locales/fr/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@
"We do not utilize any trackers or analytics.": "Nous n'utilisons aucun traqueur ni analyse.",
"We do not collect keys, addresses, or any personal information. Your data always stays on this device.": "Nous ne collectons pas de clés, d'adresses ou d'informations personnelles. Vos données restent toujours sur cet appareil.",
"We are committed to respecting your privacy and are not engaged in information collection – not even anonymized data.": "Nous nous engageons à respecter votre vie privée et ne collectons aucune information, même pas des données anonymisées.",
"Thank you for choosing Polkagate!": "Merci d'avoir choisi Polkagate !",
"Thank you for choosing PolkaGate!": "Merci d'avoir choisi PolkaGate !",
"Got it, Take Me In": "C'est compris, emmenez-moi",
"Transferable": "Transférable",
"Solo Stake": "Délégation individuelle",
Expand All @@ -1027,7 +1027,7 @@
"Step 1 of 3: Choose trusted friends": "Étape 1 sur 3 : Choisissez des amis de confiance",
"Step 2 of 3: Set details": "Étape 2 sur 3 : Définir les détails",
"Unlock date unknown": "Date de déverrouillage inconnue",
"Polkagate is a browser extension that lets you use the Polkadot network and decentralized apps. We respect your privacy and do not collect or store any of your personal data. This is how we protect your privacy:": "Polkagate est une extension de navigateur qui vous permet d’utiliser le réseau Polkadot et les applications décentralisées. Nous respectons votre vie privée et ne collectons ni ne stockons aucune de vos données personnelles. Voici comment nous protégeons votre vie privée :",
"PolkaGate is a browser extension that lets you use the Polkadot network and decentralized apps. We respect your privacy and do not collect or store any of your personal data. This is how we protect your privacy:": "PolkaGate est une extension de navigateur qui vous permet d’utiliser le réseau Polkadot et les applications décentralisées. Nous respectons votre vie privée et ne collectons ni ne stockons aucune de vos données personnelles. Voici comment nous protégeons votre vie privée :",
"We do not collect your clicks, browsing history, keys, addresses, transactions, or any other data.": "Nous ne collectons pas vos clics, votre historique de navigation, vos clés, vos adresses, vos transactions ou toute autre donnée.",
"We use open-source code, end-to-end encryption, local storage, and secure communication protocols.": "Nous utilisons du code open-source, le chiffrement de bout en bout, le stockage local et des protocoles de communication sécurisés.",
"We may update this privacy policy and notify you on our website and extension.": "Nous pouvons mettre à jour cette politique de confidentialité et vous en informer sur notre site Web et notre extension.",
Expand Down Expand Up @@ -1096,7 +1096,7 @@
"You are adding {{addingLength}} Prox{{iesOrY}}": "Vous ajoutez {{addingLength}} Prox{{iesOrY}}",
"You are removing {{removingLength}} Prox{{iesOrY}}": "Vous retirez {{removingLength}} Prox{{iesOrY}}",
"Adding {{addingLength}} and removing {{removingLength}} Proxies": "Ajout de {{addingLength}} et retrait de {{removingLength}} procurations",
"Our system suggests trusted, high return, low commission validators. Polkagate assumes no responsibility or liability for any misconduct resulting from the future actions of the validators.": "Notre système suggère des validateurs de confiance, à rendement élevé et à faibles commissions. Polkagate n'assume aucune responsabilité pour tout comportement répréhensible résultant des actions futures des validateurs.",
"Our system suggests trusted, high return, low commission validators. PolkaGate assumes no responsibility or liability for any misconduct resulting from the future actions of the validators.": "Notre système suggère des validateurs de confiance, à rendement élevé et à faibles commissions. PolkaGate n'assume aucune responsabilité pour tout comportement répréhensible résultant des actions futures des validateurs.",
"Pick 1 of {{totalNumberOfPools}} to join": "Choisissez 1 parmi {{totalNumberOfPools}} à rejoindre",
"Delegate Vote ({{ step }}/3)": "Vote de délégué ({{ step }}/3)",
"Comment on {{site}}": "Commentez sur {{site}}",
Expand All @@ -1120,7 +1120,7 @@
"Less": "Moins",
"More": "Plus",
"I already have account(s) and wish to import my existing account(s)": "J'ai déjà des compte(s) et je souhaite importer mon/ mes compte(s) existant(s)",
"Thank you for choosing Polkagate, the gateway to the Polkadot ecosystem! 🌟": "Merci d'avoir choisi Polkagate, la passerelle vers l'écosystème Polkadot ! 🌟",
"Thank you for choosing PolkaGate, the gateway to the Polkadot ecosystem! 🌟": "Merci d'avoir choisi PolkaGate, la passerelle vers l'écosystème Polkadot ! 🌟",
"Assets": "Actifs",
"Less tokens": "Moins de jetons",
"More tokens": "Plus de jetons",
Expand Down Expand Up @@ -1241,7 +1241,7 @@
"API is not connected yet ...": "L'API n'est pas encore connectée...",
"Confirmation": "Confirmation",
"Welcome to {{extensionName}}!": "Bienvenue sur {{extensionName}}!",
"We appreciate your choice in selecting Polkagate as your gateway to the Polkadot ecosystem! 🌟": "Nous apprécions votre choix en sélectionnant Polkagate comme passerelle vers l'écosystème Polkadot! 🌟",
"We appreciate your choice in selecting PolkaGate as your gateway to the Polkadot ecosystem! 🌟": "Nous apprécions votre choix en sélectionnant PolkaGate comme passerelle vers l'écosystème Polkadot! 🌟",
"At present, you do not have any accounts. To begin your journey, you can create your first account or import existing accounts to get started.": "Actuellement, vous n'avez aucun compte. Pour commencer votre voyage, vous pouvez créer votre premier compte ou importer des comptes existants pour commencer.",
"This account is a validator!": "Ce compte est un validateur!",
"Social recovery": "Récupération sociale",
Expand Down
Loading

0 comments on commit b3cf569

Please sign in to comment.