diff --git a/README.md b/README.md index af44862..84f0961 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,9 @@ Simple URL decoder ## Features - - Auto decode pasted text - - Auto formatting pasted text (and format all text on click) - - Auto extract params from pasted text - - Comparison of two texts - - Dark/Light theme \ No newline at end of file + +- Auto decode text on paste +- Auto formatting text on paste (and format all texts on click) +- Auto extract params from text on paste +- Comparison of two texts +- Dark/Light theme diff --git a/src/App.vue b/src/App.vue index db83d8f..a14c0d7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -98,19 +98,19 @@ const actions = computed(() => [ ], [ { - title: 'Auto decode pasted text', + title: 'Auto decode text on paste', icon: DecodeIcon, active: settings.decode, action: () => settings.decode = !settings.decode, }, { - title: 'Auto formatting pasted text', + title: 'Auto formatting text on paste', icon: FormatIcon, active: settings.formatting, action: () => settings.formatting = !settings.formatting, }, { - title: 'Auto extract params from pasted text', + title: 'Auto extract params from text on paste', icon: ExtractIcon, active: settings.extractParam, action: () => settings.extractParam = !settings.extractParam, @@ -118,7 +118,7 @@ const actions = computed(() => [ ], [ { - title: 'Format all pages', + title: 'Format all texts', icon: FormatPageIcon, action: makeFormatting, },