mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00
fix(typo): misspelings
This commit is contained in:
parent
0b0cbd55c3
commit
9755e51fe2
10 changed files with 13 additions and 15 deletions
|
@ -5,7 +5,7 @@ export const tool: ITool = {
|
|||
name: 'Base64 converter',
|
||||
path: '/base64-converter',
|
||||
description: "Convert string, files or images into a it's base64 representation.",
|
||||
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'convertion', 'web', 'data', 'format'],
|
||||
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'conversion', 'web', 'data', 'format'],
|
||||
component: () => import('./base64-converter.vue'),
|
||||
icon: FileDigit,
|
||||
redirectFrom: ['/file-to-base64', '/base64-string-converter'],
|
||||
|
|
|
@ -5,7 +5,7 @@ export const tool: ITool = {
|
|||
name: 'Date-time converter',
|
||||
path: '/date-converter',
|
||||
description: 'Convert date and time into the various different formats',
|
||||
keywords: ['date', 'time', 'converter', 'iso', 'utc', 'timezone', 'year', 'mounth', 'day', 'minute', 'seconde'],
|
||||
keywords: ['date', 'time', 'converter', 'iso', 'utc', 'timezone', 'year', 'month', 'day', 'minute', 'seconde'],
|
||||
component: () => import('./date-time-converter.vue'),
|
||||
icon: Calendar,
|
||||
};
|
||||
|
|
|
@ -66,7 +66,7 @@ const sections = [
|
|||
value: computed(() => navigator.languages.join(', ')),
|
||||
},
|
||||
{
|
||||
label: 'Plateform',
|
||||
label: 'Platform',
|
||||
value: computed(() => navigator.platform),
|
||||
},
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
</n-space>
|
||||
</n-space>
|
||||
<br />
|
||||
<n-form-item label="Yout text encrypted:" :show-feedback="false">
|
||||
<n-form-item label="Your text encrypted:" :show-feedback="false">
|
||||
<n-input
|
||||
:value="cypherOutput"
|
||||
type="textarea"
|
||||
|
@ -59,7 +59,7 @@
|
|||
</n-space>
|
||||
</n-space>
|
||||
<br />
|
||||
<n-form-item label="Yout decrypted text:" :show-feedback="false">
|
||||
<n-form-item label="Your decrypted text:" :show-feedback="false">
|
||||
<n-input
|
||||
:value="decryptOutput"
|
||||
type="textarea"
|
||||
|
|
|
@ -5,7 +5,7 @@ export const tool: ITool = {
|
|||
name: 'Encrypt / decrypt text',
|
||||
path: '/encryption',
|
||||
description: 'Encrypt and decrypt text clear text using crypto algorithm like AES, TripleDES, Rabbit or RC4.',
|
||||
keywords: ['cypher', 'uncypher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
|
||||
keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
|
||||
component: () => import('./encryption.vue'),
|
||||
icon: Lock,
|
||||
redirectFrom: ['/cypher'],
|
||||
|
|
|
@ -4,9 +4,8 @@ import type { ITool } from '../Tool';
|
|||
export const tool: ITool = {
|
||||
name: 'Git cheatsheet',
|
||||
path: '/git-memo',
|
||||
description:
|
||||
'Git is a decentralized version management sofware. With this cheatsheet you will have a quick acces to the most common git commands.',
|
||||
keywords: ['git', 'push', 'force', 'pull', 'commit', 'ammend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
|
||||
description: 'Git is a decentralized version management software. With this cheatsheet you will have a quick access to the most common git commands.',
|
||||
keywords: ['git', 'push', 'force', 'pull', 'commit', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
|
||||
component: () => import('./git-memo.vue'),
|
||||
icon: BrandGit,
|
||||
};
|
||||
|
|
|
@ -4,8 +4,8 @@ import type { ITool } from '../Tool';
|
|||
export const tool: ITool = {
|
||||
name: 'Integer base converter',
|
||||
path: '/base-converter',
|
||||
description: 'Convert numver between different bases (decimal, hexadecimal, binary, octale, base64, ...)',
|
||||
keywords: ['integer', 'number', 'base', 'convertion', 'decimal', 'hexadecimal', 'binary', 'octale', 'base64'],
|
||||
description: 'Convert number between different bases (decimal, hexadecimal, binary, octal, base64, ...)',
|
||||
keywords: ['integer', 'number', 'base', 'conversion', 'decimal', 'hexadecimal', 'binary', 'octal', 'base64'],
|
||||
component: () => import('./integer-base-converter.vue'),
|
||||
icon: ArrowsLeftRight,
|
||||
};
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
</n-input-group>
|
||||
|
||||
<n-input-group>
|
||||
<n-input-group-label style="flex: 0 0 170px"> Octale (8): </n-input-group-label>
|
||||
<n-input-group-label style="flex: 0 0 170px"> Octal (8): </n-input-group-label>
|
||||
<input-copyable :value="convertBase({ value: String(inputNumber), fromBase: inputBase, toBase: 8 })" readonly />
|
||||
</n-input-group>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ export const tool: ITool = {
|
|||
name: 'Random port generator',
|
||||
path: '/random-port-generator',
|
||||
description: 'Generate random port numbers outside of the range of "known" ports (0-1023).',
|
||||
keywords: ['system', 'port', 'lan', 'generator', 'random', 'developement', 'computer'],
|
||||
keywords: ['system', 'port', 'lan', 'generator', 'random', 'development', 'computer'],
|
||||
component: () => import('./random-port-generator.vue'),
|
||||
icon: Server,
|
||||
};
|
||||
|
|
|
@ -4,8 +4,7 @@ import type { ITool } from './../Tool';
|
|||
export const tool: ITool = {
|
||||
name: 'Url parser',
|
||||
path: '/url-parser',
|
||||
description:
|
||||
'Parse an url string to get all the differents parts (protocol, origin, params, port, username-password, ...)',
|
||||
description: 'Parse an url string to get all the different parts (protocol, origin, params, port, username-password, ...)',
|
||||
keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'],
|
||||
component: () => import('./url-parser.vue'),
|
||||
icon: Unlink,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue