fix(typo): misspelings
This commit is contained in:
		
							parent
							
								
									0b0cbd55c3
								
							
						
					
					
						commit
						9755e51fe2
					
				| @ -5,7 +5,7 @@ export const tool: ITool = { | |||||||
|   name: 'Base64 converter', |   name: 'Base64 converter', | ||||||
|   path: '/base64-converter', |   path: '/base64-converter', | ||||||
|   description: "Convert string, files or images into a it's base64 representation.", |   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'), |   component: () => import('./base64-converter.vue'), | ||||||
|   icon: FileDigit, |   icon: FileDigit, | ||||||
|   redirectFrom: ['/file-to-base64', '/base64-string-converter'], |   redirectFrom: ['/file-to-base64', '/base64-string-converter'], | ||||||
|  | |||||||
| @ -5,7 +5,7 @@ export const tool: ITool = { | |||||||
|   name: 'Date-time converter', |   name: 'Date-time converter', | ||||||
|   path: '/date-converter', |   path: '/date-converter', | ||||||
|   description: 'Convert date and time into the various different formats', |   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'), |   component: () => import('./date-time-converter.vue'), | ||||||
|   icon: Calendar, |   icon: Calendar, | ||||||
| }; | }; | ||||||
|  | |||||||
| @ -66,7 +66,7 @@ const sections = [ | |||||||
|         value: computed(() => navigator.languages.join(', ')), |         value: computed(() => navigator.languages.join(', ')), | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         label: 'Plateform', |         label: 'Platform', | ||||||
|         value: computed(() => navigator.platform), |         value: computed(() => navigator.platform), | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|  | |||||||
| @ -22,7 +22,7 @@ | |||||||
|       </n-space> |       </n-space> | ||||||
|     </n-space> |     </n-space> | ||||||
|     <br /> |     <br /> | ||||||
|     <n-form-item label="Yout text encrypted:" :show-feedback="false"> |     <n-form-item label="Your text encrypted:" :show-feedback="false"> | ||||||
|       <n-input |       <n-input | ||||||
|         :value="cypherOutput" |         :value="cypherOutput" | ||||||
|         type="textarea" |         type="textarea" | ||||||
| @ -59,7 +59,7 @@ | |||||||
|       </n-space> |       </n-space> | ||||||
|     </n-space> |     </n-space> | ||||||
|     <br /> |     <br /> | ||||||
|     <n-form-item label="Yout decrypted text:" :show-feedback="false"> |     <n-form-item label="Your decrypted text:" :show-feedback="false"> | ||||||
|       <n-input |       <n-input | ||||||
|         :value="decryptOutput" |         :value="decryptOutput" | ||||||
|         type="textarea" |         type="textarea" | ||||||
|  | |||||||
| @ -5,7 +5,7 @@ export const tool: ITool = { | |||||||
|   name: 'Encrypt / decrypt text', |   name: 'Encrypt / decrypt text', | ||||||
|   path: '/encryption', |   path: '/encryption', | ||||||
|   description: 'Encrypt and decrypt text clear text using crypto algorithm like AES, TripleDES, Rabbit or RC4.', |   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'), |   component: () => import('./encryption.vue'), | ||||||
|   icon: Lock, |   icon: Lock, | ||||||
|   redirectFrom: ['/cypher'], |   redirectFrom: ['/cypher'], | ||||||
|  | |||||||
| @ -4,9 +4,8 @@ import type { ITool } from '../Tool'; | |||||||
| export const tool: ITool = { | export const tool: ITool = { | ||||||
|   name: 'Git cheatsheet', |   name: 'Git cheatsheet', | ||||||
|   path: '/git-memo', |   path: '/git-memo', | ||||||
|   description: |   description: 'Git is a decentralized version management software. With this cheatsheet you will have a quick access to the most common git commands.', | ||||||
|     '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', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'], | ||||||
|   keywords: ['git', 'push', 'force', 'pull', 'commit', 'ammend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'], |  | ||||||
|   component: () => import('./git-memo.vue'), |   component: () => import('./git-memo.vue'), | ||||||
|   icon: BrandGit, |   icon: BrandGit, | ||||||
| }; | }; | ||||||
|  | |||||||
| @ -4,8 +4,8 @@ import type { ITool } from '../Tool'; | |||||||
| export const tool: ITool = { | export const tool: ITool = { | ||||||
|   name: 'Integer base converter', |   name: 'Integer base converter', | ||||||
|   path: '/base-converter', |   path: '/base-converter', | ||||||
|   description: 'Convert numver between different bases (decimal, hexadecimal, binary, octale, base64, ...)', |   description: 'Convert number between different bases (decimal, hexadecimal, binary, octal, base64, ...)', | ||||||
|   keywords: ['integer', 'number', 'base', 'convertion', 'decimal', 'hexadecimal', 'binary', 'octale', 'base64'], |   keywords: ['integer', 'number', 'base', 'conversion', 'decimal', 'hexadecimal', 'binary', 'octal', 'base64'], | ||||||
|   component: () => import('./integer-base-converter.vue'), |   component: () => import('./integer-base-converter.vue'), | ||||||
|   icon: ArrowsLeftRight, |   icon: ArrowsLeftRight, | ||||||
| }; | }; | ||||||
|  | |||||||
| @ -26,7 +26,7 @@ | |||||||
|       </n-input-group> |       </n-input-group> | ||||||
| 
 | 
 | ||||||
|       <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 /> |         <input-copyable :value="convertBase({ value: String(inputNumber), fromBase: inputBase, toBase: 8 })" readonly /> | ||||||
|       </n-input-group> |       </n-input-group> | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -5,7 +5,7 @@ export const tool: ITool = { | |||||||
|   name: 'Random port generator', |   name: 'Random port generator', | ||||||
|   path: '/random-port-generator', |   path: '/random-port-generator', | ||||||
|   description: 'Generate random port numbers outside of the range of "known" ports (0-1023).', |   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'), |   component: () => import('./random-port-generator.vue'), | ||||||
|   icon: Server, |   icon: Server, | ||||||
| }; | }; | ||||||
|  | |||||||
| @ -4,8 +4,7 @@ import type { ITool } from './../Tool'; | |||||||
| export const tool: ITool = { | export const tool: ITool = { | ||||||
|   name: 'Url parser', |   name: 'Url parser', | ||||||
|   path: '/url-parser', |   path: '/url-parser', | ||||||
|   description: |   description: 'Parse an url string to get all the different parts (protocol, origin, params, port, username-password, ...)', | ||||||
|     'Parse an url string to get all the differents parts (protocol, origin, params, port, username-password, ...)', |  | ||||||
|   keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'], |   keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'], | ||||||
|   component: () => import('./url-parser.vue'), |   component: () => import('./url-parser.vue'), | ||||||
|   icon: Unlink, |   icon: Unlink, | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user