-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Extract strings into localazation file
- Loading branch information
Showing
20 changed files
with
136 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"name": "GitHub: Better Line Counts", | ||
"description": "Remove generated files from GitHub line counts", | ||
"name": "github-better-line-counts", | ||
"private": true, | ||
"version": "1.7.0", | ||
"packageManager": "[email protected]", | ||
|
@@ -37,6 +36,8 @@ | |
"@types/chrome": "^0.0.269", | ||
"@types/jsdom": "^21.1.3", | ||
"@vitest/coverage-v8": "^2.1.3", | ||
"@wxt-dev/auto-icons": "^1.0.2", | ||
"@wxt-dev/i18n": "^0.2.0", | ||
"@wxt-dev/module-vue": "^1.0.0", | ||
"autoprefixer": "^10.4.16", | ||
"env-cmd": "^10.1.0", | ||
|
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
import Options from "@/pages/Options.vue"; | ||
import { VueQueryPlugin } from "@tanstack/vue-query"; | ||
|
||
document.title = i18n.t("options.title"); | ||
|
||
createApp(Options).use(VueQueryPlugin).mount(document.body); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: GitHub Better Line Counts | ||
description: Remove generated files from GitHub line counts | ||
saveChanges: Save Changes | ||
discard: Discard | ||
diffs: | ||
additionsText: | ||
1: $1 addition | ||
n: $1 additions | ||
deletionsText: | ||
1: $1 deletion | ||
n: $1 deletions | ||
generatedText: | ||
1: $1 generated line. | ||
n: $1 generated lines. | ||
additionsSymbol: +$1 | ||
deletionsSymbol: −$1 | ||
generatedSymbol: ⌁$1 | ||
options: | ||
title: Options | ||
privateRepos: | ||
title: Access Private Repos | ||
description1: "Optional:" | ||
description2: To recalculate the diff on private repos, the extension needs a GitHub PAT to authenticate API requests. | ||
description3: Click here | ||
description4: to create one. | ||
inputPlaceholder: Personal access token... | ||
invalidToken: Token is invalid | ||
validToken: Token is valid | ||
checking: Checking token... | ||
username: "Username: $1" | ||
enabled: | ||
title: Show Generated Line Counts | ||
description1: Along with | ||
description2: +additions | ||
description3: and | ||
description4: −deletions | ||
description5: ", show a third number for" | ||
description6: ⌁generated | ||
description7: lines. | ||
customLists: | ||
title: Custom Lists | ||
description1: Use | ||
description2: minimatch | ||
description3: glob patterns to mark files as generated across all repos. | ||
allRepos: All Repos | ||
customRepoPlaceholder: | | ||
Enter glob patterns: | ||
*.lock | ||
**/vendor/** |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters