Skip to content

Commit

Permalink
chore: lokalise -> ipcjs
Browse files Browse the repository at this point in the history
ipcjs.i18n-ally-ipcjs是面向国际化的全场景分布式扩展,支持Vue, React, Flutter等多种应用,提供国际化的一站式服务的平台。🐶️
  • Loading branch information
ipcjs committed Nov 30, 2023
1 parent cd471cc commit 0901e4e
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint",
"lokalise.i18n-ally",
"ipcjs.i18n-ally-ipcjs",
"amodio.tsl-problem-matcher",
]
}
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"inplaces",
"joomla",
"lokalise",
"ipcjs",
"regs",
"youdao"
],
Expand Down
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
MIT License

Copyright (c) 2023-PRESENT ipcjs <https://github.com/ipcjs>
Copyright (c) 2021-PRESENT Lokalise Inc. <https://github.com/lokalise>
Copyright (c) 2019-2020 Anthony Fu <https://github.com/antfu>
Copyright (c) 2018-2019 think2011 <https://github.com/think2011>
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"publisher": "lokalise",
"name": "i18n-ally",
"publisher": "ipcjs",
"name": "i18n-ally-ipcjs",
"version": "2.12.0",
"displayName": "i18n Ally",
"displayName": "i18n Ally (ipcjs)",
"description": "🌍 All in one i18n extension for VS Code",
"keywords": [
"vue",
Expand All @@ -13,7 +13,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/lokalise/i18n-ally"
"url": "https://github.com/ipcjs/i18n-ally"
},
"main": "./dist/extension",
"scripts": {
Expand Down Expand Up @@ -169,8 +169,8 @@
"onLanguage:svelte"
],
"icon": "res/logo.png",
"homepage": "https://github.com/lokalise/i18n-ally",
"bugs": "https://github.com/lokalise/i18n-ally/issues",
"homepage": "https://github.com/ipcjs/i18n-ally",
"bugs": "https://github.com/ipcjs/i18n-ally/issues",
"contributes": {
"commands": [
{
Expand Down Expand Up @@ -1245,12 +1245,12 @@
"i18n-ally.extract.parsers.html": {
"type": "object",
"default": {},
"description": "Parser options for extracting HTML, see https://github.com/lokalise/i18n-ally/blob/master/src/extraction/parsers/options.ts"
"description": "Parser options for extracting HTML, see https://github.com/ipcjs/i18n-ally/blob/master/src/extraction/parsers/options.ts"
},
"i18n-ally.extract.parsers.babel": {
"type": "object",
"default": {},
"description": "Parser options for extracting JS/TS/JSX/TSX, see https://github.com/lokalise/i18n-ally/blob/master/src/extraction/parsers/options.ts"
"description": "Parser options for extracting JS/TS/JSX/TSX, see https://github.com/ipcjs/i18n-ally/blob/master/src/extraction/parsers/options.ts"
},
"i18n-ally.extract.autoDetect": {
"type": "boolean",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default <ExtensionModule> function() {

commands.registerCommand(Commands.open_docs_hard_string,
async() => {
await env.openExternal(Uri.parse('https://github.com/lokalise/i18n-ally/wiki/Hard-coded-Strings-Extraction'))
await env.openExternal(Uri.parse('https://github.com/ipcjs/i18n-ally/wiki/Hard-coded-Strings-Extraction'))
}),

commands.registerCommand(Commands.support,
Expand Down
6 changes: 3 additions & 3 deletions src/links.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
github: 'https://github.com/lokalise/i18n-ally',
document: 'https://github.com/lokalise/i18n-ally/blob/master/README.md',
issues: 'https://github.com/lokalise/i18n-ally/issues',
github: 'https://github.com/ipcjs/i18n-ally',
document: 'https://github.com/ipcjs/i18n-ally/blob/master/README.md',
issues: 'https://github.com/ipcjs/i18n-ally/issues',
}
4 changes: 2 additions & 2 deletions src/meta.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const EXT_NAMESPACE = 'i18n-ally'
export const EXT_ID = 'lokalise.i18n-ally'
export const EXT_NAME = 'i18n Ally'
export const EXT_ID = 'ipcjs.i18n-ally-ipcjs'
export const EXT_NAME = 'i18n Ally (ipcjs)'
export const EXT_EDITOR_ID = 'i18n-ally-editor'
export const EXT_REVIEW_ID = 'i18n-ally-review'

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/ctx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function timeout(ms = 1000) {
}

export function getExt() {
return extensions.getExtension('lokalise.i18n-ally')!
return extensions.getExtension('ipcjs.i18n-ally')!
}

export async function openFile(name: string) {
Expand Down

0 comments on commit 0901e4e

Please sign in to comment.