From f63dcaa8592806e1a07f8b6fbe37a36eac9bfc19 Mon Sep 17 00:00:00 2001 From: Noritaka Kobayashi Date: Mon, 26 May 2025 20:02:02 +0900 Subject: [PATCH 1/2] chore: fix typos in comment-out --- src/api/providers/__tests__/bedrock-custom-arn.test.ts | 4 ++-- src/api/providers/bedrock.ts | 2 +- src/core/assistant-message/parseAssistantMessage.ts | 2 +- src/core/task/Task.ts | 2 +- src/core/webview/ClineProvider.ts | 10 +++++----- src/schemas/index.ts | 6 +++--- src/utils/shell.ts | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/api/providers/__tests__/bedrock-custom-arn.test.ts b/src/api/providers/__tests__/bedrock-custom-arn.test.ts index ebec24044f..414ea92af2 100644 --- a/src/api/providers/__tests__/bedrock-custom-arn.test.ts +++ b/src/api/providers/__tests__/bedrock-custom-arn.test.ts @@ -69,7 +69,7 @@ describe("Bedrock ARN Handling", () => { describe("parseArn direct tests", () => { it("should correctly extract modelType and modelId from foundation-model ARN", () => { const handler = createHandler() - //note: properly formated foundation-model ARNs don't have an account id. + //note: properly formatted foundation-model ARNs don't have an account id. const arn = "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-sonnet-20240229-v1:0" // Access the private method using type casting @@ -79,7 +79,7 @@ describe("Bedrock ARN Handling", () => { expect(result.isValid).toBe(true) expect(result.modelType).toBe("foundation-model") - //verify the id is not the ARN for foudation models, but the ID + //verify the id is not the ARN for foundation models, but the ID expect(result.modelId).toBe("anthropic.claude-3-sonnet-20240229-v1:0") expect(result.crossRegionInference).toBe(false) }) diff --git a/src/api/providers/bedrock.ts b/src/api/providers/bedrock.ts index c378441484..a380231ab1 100644 --- a/src/api/providers/bedrock.ts +++ b/src/api/providers/bedrock.ts @@ -124,7 +124,7 @@ export class AwsBedrockHandler extends BaseProvider implements SingleCompletionH let region = this.options.awsRegion // process the various user input options, be opinionated about the intent of the options - // and determine the model to use during inference and for cost caclulations + // and determine the model to use during inference and for cost calculations // There are variations on ARN strings that can be entered making the conditional logic // more involved than the non-ARN branch of logic if (this.options.awsCustomArn) { diff --git a/src/core/assistant-message/parseAssistantMessage.ts b/src/core/assistant-message/parseAssistantMessage.ts index f641cabdaa..5c68a1ce83 100644 --- a/src/core/assistant-message/parseAssistantMessage.ts +++ b/src/core/assistant-message/parseAssistantMessage.ts @@ -60,7 +60,7 @@ export function parseAssistantMessage(assistantMessage: string): AssistantMessag // contain the closing tag, in which case the param would have // closed and we end up with the rest of the file contents here. // To work around this, we get the string between the starting - // ontent tag and the LAST content tag. + // content tag and the LAST content tag. const contentParamName: ToolParamName = "content" if (currentToolUse.name === "write_to_file" && accumulator.endsWith(``)) { diff --git a/src/core/task/Task.ts b/src/core/task/Task.ts index 231a6049ad..92a0110dc3 100644 --- a/src/core/task/Task.ts +++ b/src/core/task/Task.ts @@ -1280,7 +1280,7 @@ export class Task extends EventEmitter { // `userContent` has a tool rejection, so interrupt the // assistant's response to present the user's feedback. assistantMessage += "\n\n[Response interrupted by user feedback]" - // Instead of setting this premptively, we allow the + // Instead of setting this preemptively, we allow the // present iterator to finish and set // userMessageContentReady when its ready. // this.userMessageContentReady = true diff --git a/src/core/webview/ClineProvider.ts b/src/core/webview/ClineProvider.ts index 43f56b8fa5..187d765fa7 100644 --- a/src/core/webview/ClineProvider.ts +++ b/src/core/webview/ClineProvider.ts @@ -342,7 +342,7 @@ export class ClineProvider extends EventEmitter implements setPanel(webviewView, "sidebar") } - // Initialize out-of-scope variables that need to recieve persistent global state values + // Initialize out-of-scope variables that need to receive persistent global state values this.getState().then( ({ terminalShellIntegrationTimeout = Terminal.defaultShellIntegrationTimeout, @@ -387,7 +387,7 @@ export class ClineProvider extends EventEmitter implements : this.getHtmlContent(webviewView.webview) // Sets up an event listener to listen for messages passed from the webview view context - // and executes code based on the message that is recieved + // and executes code based on the message that is received this.setWebviewMessageListener(webviewView.webview) // Subscribe to code index status updates if the manager exists @@ -465,7 +465,7 @@ export class ClineProvider extends EventEmitter implements } // When initializing a new task, (not from history but from a tool command - // new_task) there is no need to remove the previouse task since the new + // new_task) there is no need to remove the previous task since the new // task is a subtask of the previous one, and when it finishes it is removed // from the stack and the caller is resumed in this way we can have a chain // of tasks, each one being a sub task of the previous one until the main @@ -685,7 +685,7 @@ export class ClineProvider extends EventEmitter implements /* content security policy of your webview to only allow scripts that have a specific nonce create a content security policy meta tag so that only loading scripts with a nonce is allowed - As your extension grows you will likely want to add custom styles, fonts, and/or images to your webview. If you do, you will need to update the content security policy meta tag to explicity allow for these resources. E.g. + As your extension grows you will likely want to add custom styles, fonts, and/or images to your webview. If you do, you will need to update the content security policy meta tag to explicitly allow for these resources. E.g. - 'unsafe-inline' is required for styles due to vscode-webview-toolkit's dynamic style injection - since we pass base64 images to the webview, we need to specify img-src ${webview.cspSource} data:; @@ -723,7 +723,7 @@ export class ClineProvider extends EventEmitter implements /** * Sets up an event listener to listen for messages passed from the webview context and - * executes code based on the message that is recieved. + * executes code based on the message that is received. * * @param webview A reference to the extension webview */ diff --git a/src/schemas/index.ts b/src/schemas/index.ts index 4fb893ae1f..3e55086bf0 100644 --- a/src/schemas/index.ts +++ b/src/schemas/index.ts @@ -1,4 +1,4 @@ -// Updates to this file will automatically propgate to src/exports/types.ts +// Updates to this file will automatically propagate to src/exports/types.ts // via a pre-commit hook. If you want to update the types before committing you // can run `pnpm generate-types`. @@ -244,7 +244,7 @@ export const codebaseIndexModelsSchema = z.object({ export type CodebaseIndexModels = z.infer export const codebaseIndexProviderSchema = z.object({ - codeIndexOpenAiKey: z.string().optional(), + codeIndexOpenAiKey: z.string().optional(), codeIndexQdrantApiKey: z.string().optional(), }) @@ -661,7 +661,7 @@ export const providerSettingsSchema = z.object({ ...groqSchema.shape, ...chutesSchema.shape, ...litellmSchema.shape, - ...codebaseIndexProviderSchema.shape + ...codebaseIndexProviderSchema.shape, }) export type ProviderSettings = z.infer diff --git a/src/utils/shell.ts b/src/utils/shell.ts index 2f7ffb3a88..22a916f02c 100644 --- a/src/utils/shell.ts +++ b/src/utils/shell.ts @@ -91,7 +91,7 @@ function getWindowsShellFromVSCode(): string | null { // If the profile name indicates PowerShell, do version-based detection. // In testing it was found these typically do not have a path, and this - // implementation manages to deductively get the corect version of PowerShell + // implementation manages to deductively get the correct version of PowerShell if (defaultProfileName.toLowerCase().includes("powershell")) { if (profile?.path) { // If there's an explicit PowerShell path, return that From 768d3a2cb4f56ae4f362990a6c9ba838f601a908 Mon Sep 17 00:00:00 2001 From: Noritaka Kobayashi Date: Sun, 1 Jun 2025 22:32:51 +0900 Subject: [PATCH 2/2] chore: revert unrelated fixes --- locales/ca/README.md | 62 +++++----- locales/de/README.md | 62 +++++----- locales/es/README.md | 62 +++++----- locales/fr/README.md | 62 +++++----- locales/hi/README.md | 62 +++++----- locales/it/README.md | 62 +++++----- locales/ja/README.md | 62 +++++----- locales/ko/README.md | 62 +++++----- locales/nl/README.md | 62 +++++----- locales/pl/README.md | 62 +++++----- locales/pt-BR/README.md | 62 +++++----- locales/ru/README.md | 62 +++++----- locales/tr/README.md | 62 +++++----- locales/vi/README.md | 62 +++++----- locales/zh-CN/README.md | 62 +++++----- locales/zh-TW/README.md | 62 +++++----- packages/types/src/global-settings.ts | 2 +- src/core/tools/__tests__/readFileTool.test.ts | 106 ++++++++---------- .../misc/__tests__/read-file-tool.test.ts | 2 +- src/shared/__tests__/experiments.test.ts | 1 + .../settings/ExperimentalSettings.tsx | 5 +- .../providers/__tests__/Bedrock.test.tsx | 16 +-- 22 files changed, 537 insertions(+), 587 deletions(-) diff --git a/locales/ca/README.md b/locales/ca/README.md index 10fd9575d9..d9c7743186 100644 --- a/locales/ca/README.md +++ b/locales/ca/README.md @@ -181,38 +181,36 @@ Ens encanten les contribucions de la comunitat! Comenceu llegint el nostre [CONT Gràcies a tots els nostres col·laboradors que han ajudat a millorar Roo Code! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Llicència diff --git a/locales/de/README.md b/locales/de/README.md index 24a3127142..e7b7e9b6a3 100644 --- a/locales/de/README.md +++ b/locales/de/README.md @@ -181,38 +181,36 @@ Wir lieben Community-Beiträge! Beginnen Sie mit dem Lesen unserer [CONTRIBUTING Danke an alle unsere Mitwirkenden, die geholfen haben, Roo Code zu verbessern! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Lizenz diff --git a/locales/es/README.md b/locales/es/README.md index 90d2542889..bf16a2f761 100644 --- a/locales/es/README.md +++ b/locales/es/README.md @@ -181,38 +181,36 @@ Usamos [changesets](https://github.com/changesets/changesets) para versionar y p ¡Gracias a todos nuestros colaboradores que han ayudado a mejorar Roo Code! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Licencia diff --git a/locales/fr/README.md b/locales/fr/README.md index f78364d763..3318f3497c 100644 --- a/locales/fr/README.md +++ b/locales/fr/README.md @@ -181,38 +181,36 @@ Nous adorons les contributions de la communauté ! Commencez par lire notre [CON Merci à tous nos contributeurs qui ont aidé à améliorer Roo Code ! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Licence diff --git a/locales/hi/README.md b/locales/hi/README.md index 63b4cc9859..ba518a67f9 100644 --- a/locales/hi/README.md +++ b/locales/hi/README.md @@ -181,38 +181,36 @@ code --install-extension bin/roo-cline-.vsix Roo Code को बेहतर बनाने में मदद करने वाले हमारे सभी योगदानकर्ताओं को धन्यवाद! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## लाइसेंस diff --git a/locales/it/README.md b/locales/it/README.md index fcbd132dc5..9386e32dc8 100644 --- a/locales/it/README.md +++ b/locales/it/README.md @@ -181,38 +181,36 @@ Amiamo i contributi della community! Inizia leggendo il nostro [CONTRIBUTING.md] Grazie a tutti i nostri contributori che hanno aiutato a migliorare Roo Code! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Licenza diff --git a/locales/ja/README.md b/locales/ja/README.md index 764046acc9..848445e149 100644 --- a/locales/ja/README.md +++ b/locales/ja/README.md @@ -181,38 +181,36 @@ code --install-extension bin/roo-cline-.vsix Roo Codeの改善に貢献してくれたすべての貢献者に感謝します! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## ライセンス diff --git a/locales/ko/README.md b/locales/ko/README.md index cda3890832..25f5e68fec 100644 --- a/locales/ko/README.md +++ b/locales/ko/README.md @@ -181,38 +181,36 @@ code --install-extension bin/roo-cline-.vsix Roo Code를 더 좋게 만드는 데 도움을 준 모든 기여자에게 감사드립니다! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## 라이선스 diff --git a/locales/nl/README.md b/locales/nl/README.md index d740ec884c..f2fe37352e 100644 --- a/locales/nl/README.md +++ b/locales/nl/README.md @@ -181,38 +181,36 @@ We houden van bijdragen uit de community! Begin met het lezen van onze [CONTRIBU Dank aan alle bijdragers die Roo Code beter hebben gemaakt! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Licentie diff --git a/locales/pl/README.md b/locales/pl/README.md index bcf8367b67..eb3b7fd422 100644 --- a/locales/pl/README.md +++ b/locales/pl/README.md @@ -181,38 +181,36 @@ Kochamy wkład społeczności! Zacznij od przeczytania naszego [CONTRIBUTING.md] Dziękujemy wszystkim naszym współtwórcom, którzy pomogli ulepszyć Roo Code! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Licencja diff --git a/locales/pt-BR/README.md b/locales/pt-BR/README.md index 7f27692452..4d3fee5507 100644 --- a/locales/pt-BR/README.md +++ b/locales/pt-BR/README.md @@ -181,38 +181,36 @@ Adoramos contribuições da comunidade! Comece lendo nosso [CONTRIBUTING.md](CON Obrigado a todos os nossos contribuidores que ajudaram a tornar o Roo Code melhor! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Licença diff --git a/locales/ru/README.md b/locales/ru/README.md index f199bf1b2c..14d7c31787 100644 --- a/locales/ru/README.md +++ b/locales/ru/README.md @@ -181,38 +181,36 @@ code --install-extension bin/roo-cline-.vsix Спасибо всем нашим участникам, которые помогли сделать Roo Code лучше! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Лицензия diff --git a/locales/tr/README.md b/locales/tr/README.md index cad3d3caec..9f4893a441 100644 --- a/locales/tr/README.md +++ b/locales/tr/README.md @@ -181,38 +181,36 @@ Topluluk katkılarını seviyoruz! [CONTRIBUTING.md](CONTRIBUTING.md) dosyasın Roo Code'u daha iyi hale getirmeye yardımcı olan tüm katkıda bulunanlara teşekkür ederiz! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Lisans diff --git a/locales/vi/README.md b/locales/vi/README.md index 23bc163188..2e59ee95db 100644 --- a/locales/vi/README.md +++ b/locales/vi/README.md @@ -181,38 +181,36 @@ Chúng tôi rất hoan nghênh đóng góp từ cộng đồng! Bắt đầu b Cảm ơn tất cả những người đóng góp đã giúp cải thiện Roo Code! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## Giấy Phép diff --git a/locales/zh-CN/README.md b/locales/zh-CN/README.md index df7a077bd6..a4a85e4e79 100644 --- a/locales/zh-CN/README.md +++ b/locales/zh-CN/README.md @@ -181,38 +181,36 @@ code --install-extension bin/roo-cline-.vsix 感谢所有帮助改进 Roo Code 的贡献者! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## 许可证 diff --git a/locales/zh-TW/README.md b/locales/zh-TW/README.md index fa6686ba0e..ac35695a05 100644 --- a/locales/zh-TW/README.md +++ b/locales/zh-TW/README.md @@ -182,38 +182,36 @@ code --install-extension bin/roo-cline-.vsix 感謝所有幫助改進 Roo Code 的貢獻者! - -| mrubens
mrubens
| saoudrizwan
saoudrizwan
| cte
cte
| samhvw8
samhvw8
| daniel-lxs
daniel-lxs
| a8trejo
a8trejo
| -| :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | -| ColemanRoo
ColemanRoo
| canrobins13
canrobins13
| hannesrudolph
hannesrudolph
| KJ7LNW
KJ7LNW
| stea9499
stea9499
| joemanley201
joemanley201
| -| System233
System233
| nissa-seru
nissa-seru
| jquanton
jquanton
| NyxJae
NyxJae
| MuriloFP
MuriloFP
| d-oit
d-oit
| -| punkpeye
punkpeye
| wkordalski
wkordalski
| cannuri
cannuri
| monotykamary
monotykamary
| Smartsheet-JB-Brown
Smartsheet-JB-Brown
| elianiva
elianiva
| -| sachasayan
sachasayan
| feifei325
feifei325
| zhangtony239
zhangtony239
| qdaxb
qdaxb
| vigneshsubbiah16
vigneshsubbiah16
| shariqriazz
shariqriazz
| -| lloydchang
lloydchang
| jr
jr
| pugazhendhi-m
pugazhendhi-m
| xyOz-dev
xyOz-dev
| Szpadel
Szpadel
| dtrugman
dtrugman
| -| diarmidmackenzie
diarmidmackenzie
| psv2522
psv2522
| Premshay
Premshay
| lupuletic
lupuletic
| aheizi
aheizi
| PeterDaveHello
PeterDaveHello
| -| olweraltuve
olweraltuve
| ChuKhaLi
ChuKhaLi
| nbihan-mediware
nbihan-mediware
| RaySinner
RaySinner
| afshawnlotfi
afshawnlotfi
| pdecat
pdecat
| -| kyle-apex
kyle-apex
| emshvac
emshvac
| chrarnoldus
chrarnoldus
| Lunchb0ne
Lunchb0ne
| SmartManoj
SmartManoj
| vagadiya
vagadiya
| -| slytechnical
slytechnical
| arthurauffray
arthurauffray
| upamune
upamune
| StevenTCramer
StevenTCramer
| sammcj
sammcj
| p12tic
p12tic
| -| noritaka1166
noritaka1166
| gtaylor
gtaylor
| aitoroses
aitoroses
| benzntech
benzntech
| mr-ryan-james
mr-ryan-james
| heyseth
heyseth
| -| taisukeoe
taisukeoe
| NamesMT
NamesMT
| avtc
avtc
| dlab-anton
dlab-anton
| eonghk
eonghk
| ronyblum
ronyblum
| -| teddyOOXX
teddyOOXX
| vincentsong
vincentsong
| yongjer
yongjer
| zeozeozeo
zeozeozeo
| ashktn
ashktn
| franekp
franekp
| -| yt3trees
yt3trees
| axkirillov
axkirillov
| anton-otee
anton-otee
| bramburn
bramburn
| hassoncs
hassoncs
| snoyiatk
snoyiatk
| -| GitlyHallows
GitlyHallows
| jcbdev
jcbdev
| Chenjiayuan195
Chenjiayuan195
| julionav
julionav
| SplittyDev
SplittyDev
| mdp
mdp
| -| napter
napter
| philfung
philfung
| ross
ross
| Ruakij
Ruakij
| GOODBOY008
GOODBOY008
| hatsu38
hatsu38
| -| hongzio
hongzio
| jwcraig
jwcraig
| shoopapa
shoopapa
| im47cn
im47cn
| hongzio
hongzio
| hatsu38
hatsu38
| -| GOODBOY008
GOODBOY008
| dqroid
dqroid
| dairui1
dairui1
| bannzai
bannzai
| axmo
axmo
| asychin
asychin
| -| amittell
amittell
| Yoshino-Yukitaro
Yoshino-Yukitaro
| Yikai-Liao
Yikai-Liao
| zxdvd
zxdvd
| vladstudio
vladstudio
| tmsjngx0
tmsjngx0
| -| PretzelVector
PretzelVector
| zetaloop
zetaloop
| cdlliuy
cdlliuy
| student20880
student20880
| shohei-ihaya
shohei-ihaya
| shaybc
shaybc
| -| seedlord
seedlord
| samir-nimbly
samir-nimbly
| robertheadley
robertheadley
| refactorthis
refactorthis
| pokutuna
pokutuna
| philipnext
philipnext
| -| oprstchn
oprstchn
| nobu007
nobu007
| mosleyit
mosleyit
| moqimoqidea
moqimoqidea
| mlopezr
mlopezr
| mecab
mecab
| -| olup
olup
| lightrabbit
lightrabbit
| celestial-vault
celestial-vault
| linegel
linegel
| dbasclpy
dbasclpy
| Deon588
Deon588
| -| dleen
dleen
| devxpain
devxpain
| chadgauth
chadgauth
| olearycrew
olearycrew
| bogdan0083
bogdan0083
| Atlogit
Atlogit
| -| atlasgong
atlasgong
| andreastempsch
andreastempsch
| alasano
alasano
| QuinsZouls
QuinsZouls
| HadesArchitect
HadesArchitect
| alarno
alarno
| -| nexon33
nexon33
| adilhafeez
adilhafeez
| adamwlarson
adamwlarson
| AMHesch
AMHesch
| tgfjt
tgfjt
| maekawataiki
maekawataiki
| -| SannidhyaSah
SannidhyaSah
| samsilveira
samsilveira
| 01Rian
01Rian
| RSO
RSO
| R-omk
R-omk
| Sarke
Sarke
| -| kvokka
kvokka
| ecmasx
ecmasx
| marvijo-code
marvijo-code
| mamertofabian
mamertofabian
| monkeyDluffy6017
monkeyDluffy6017
| libertyteeth
libertyteeth
| -| shtse8
shtse8
| ksze
ksze
| Jdo300
Jdo300
| hesara
hesara
| DeXtroTip
DeXtroTip
| pfitz
pfitz
| - +|mrubens
mrubens
|saoudrizwan
saoudrizwan
|cte
cte
|samhvw8
samhvw8
|daniel-lxs
daniel-lxs
|a8trejo
a8trejo
| +|:---:|:---:|:---:|:---:|:---:|:---:| +|ColemanRoo
ColemanRoo
|canrobins13
canrobins13
|hannesrudolph
hannesrudolph
|KJ7LNW
KJ7LNW
|stea9499
stea9499
|joemanley201
joemanley201
| +|System233
System233
|nissa-seru
nissa-seru
|jquanton
jquanton
|NyxJae
NyxJae
|MuriloFP
MuriloFP
|d-oit
d-oit
| +|punkpeye
punkpeye
|wkordalski
wkordalski
|cannuri
cannuri
|monotykamary
monotykamary
|Smartsheet-JB-Brown
Smartsheet-JB-Brown
|elianiva
elianiva
| +|sachasayan
sachasayan
|feifei325
feifei325
|zhangtony239
zhangtony239
|qdaxb
qdaxb
|vigneshsubbiah16
vigneshsubbiah16
|shariqriazz
shariqriazz
| +|lloydchang
lloydchang
|jr
jr
|pugazhendhi-m
pugazhendhi-m
|xyOz-dev
xyOz-dev
|Szpadel
Szpadel
|dtrugman
dtrugman
| +|diarmidmackenzie
diarmidmackenzie
|psv2522
psv2522
|Premshay
Premshay
|lupuletic
lupuletic
|aheizi
aheizi
|PeterDaveHello
PeterDaveHello
| +|olweraltuve
olweraltuve
|ChuKhaLi
ChuKhaLi
|nbihan-mediware
nbihan-mediware
|RaySinner
RaySinner
|afshawnlotfi
afshawnlotfi
|pdecat
pdecat
| +|kyle-apex
kyle-apex
|emshvac
emshvac
|chrarnoldus
chrarnoldus
|Lunchb0ne
Lunchb0ne
|SmartManoj
SmartManoj
|vagadiya
vagadiya
| +|slytechnical
slytechnical
|arthurauffray
arthurauffray
|upamune
upamune
|StevenTCramer
StevenTCramer
|sammcj
sammcj
|p12tic
p12tic
| +|noritaka1166
noritaka1166
|gtaylor
gtaylor
|aitoroses
aitoroses
|benzntech
benzntech
|mr-ryan-james
mr-ryan-james
|heyseth
heyseth
| +|taisukeoe
taisukeoe
|NamesMT
NamesMT
|avtc
avtc
|dlab-anton
dlab-anton
|eonghk
eonghk
|ronyblum
ronyblum
| +|teddyOOXX
teddyOOXX
|vincentsong
vincentsong
|yongjer
yongjer
|zeozeozeo
zeozeozeo
|ashktn
ashktn
|franekp
franekp
| +|yt3trees
yt3trees
|axkirillov
axkirillov
|anton-otee
anton-otee
|bramburn
bramburn
|hassoncs
hassoncs
|snoyiatk
snoyiatk
| +|GitlyHallows
GitlyHallows
|jcbdev
jcbdev
|Chenjiayuan195
Chenjiayuan195
|julionav
julionav
|SplittyDev
SplittyDev
|mdp
mdp
| +|napter
napter
|philfung
philfung
|ross
ross
|Ruakij
Ruakij
|GOODBOY008
GOODBOY008
|hatsu38
hatsu38
| +|hongzio
hongzio
|jwcraig
jwcraig
|shoopapa
shoopapa
|im47cn
im47cn
|hongzio
hongzio
|hatsu38
hatsu38
| +|GOODBOY008
GOODBOY008
|dqroid
dqroid
|dairui1
dairui1
|bannzai
bannzai
|axmo
axmo
|asychin
asychin
| +|amittell
amittell
|Yoshino-Yukitaro
Yoshino-Yukitaro
|Yikai-Liao
Yikai-Liao
|zxdvd
zxdvd
|vladstudio
vladstudio
|tmsjngx0
tmsjngx0
| +|PretzelVector
PretzelVector
|zetaloop
zetaloop
|cdlliuy
cdlliuy
|student20880
student20880
|shohei-ihaya
shohei-ihaya
|shaybc
shaybc
| +|seedlord
seedlord
|samir-nimbly
samir-nimbly
|robertheadley
robertheadley
|refactorthis
refactorthis
|pokutuna
pokutuna
|philipnext
philipnext
| +|oprstchn
oprstchn
|nobu007
nobu007
|mosleyit
mosleyit
|moqimoqidea
moqimoqidea
|mlopezr
mlopezr
|mecab
mecab
| +|olup
olup
|lightrabbit
lightrabbit
|celestial-vault
celestial-vault
|linegel
linegel
|dbasclpy
dbasclpy
|Deon588
Deon588
| +|dleen
dleen
|devxpain
devxpain
|chadgauth
chadgauth
|olearycrew
olearycrew
|bogdan0083
bogdan0083
|Atlogit
Atlogit
| +|atlasgong
atlasgong
|andreastempsch
andreastempsch
|alasano
alasano
|QuinsZouls
QuinsZouls
|HadesArchitect
HadesArchitect
|alarno
alarno
| +|nexon33
nexon33
|adilhafeez
adilhafeez
|adamwlarson
adamwlarson
|AMHesch
AMHesch
|tgfjt
tgfjt
|maekawataiki
maekawataiki
| +|SannidhyaSah
SannidhyaSah
|samsilveira
samsilveira
|01Rian
01Rian
|RSO
RSO
|R-omk
R-omk
|Sarke
Sarke
| +|kvokka
kvokka
|ecmasx
ecmasx
|marvijo-code
marvijo-code
|mamertofabian
mamertofabian
|monkeyDluffy6017
monkeyDluffy6017
|libertyteeth
libertyteeth
| +|shtse8
shtse8
|ksze
ksze
|Jdo300
Jdo300
|hesara
hesara
|DeXtroTip
DeXtroTip
|pfitz
pfitz
| ## 授權 diff --git a/packages/types/src/global-settings.ts b/packages/types/src/global-settings.ts index 073dcb5f93..8220aca3a1 100644 --- a/packages/types/src/global-settings.ts +++ b/packages/types/src/global-settings.ts @@ -48,7 +48,7 @@ export const globalSettingsSchema = z.object({ allowedMaxRequests: z.number().nullish(), autoCondenseContext: z.boolean().optional(), autoCondenseContextPercent: z.number().optional(), - maxConcurrentFileReads: z.number().optional(), + maxConcurrentFileReads: z.number().optional(), browserToolEnabled: z.boolean().optional(), browserViewportSize: z.string().optional(), diff --git a/src/core/tools/__tests__/readFileTool.test.ts b/src/core/tools/__tests__/readFileTool.test.ts index acdef9e62d..c06c9ef6c6 100644 --- a/src/core/tools/__tests__/readFileTool.test.ts +++ b/src/core/tools/__tests__/readFileTool.test.ts @@ -39,15 +39,15 @@ jest.mock("../../../services/tree-sitter") // Then create the mock functions const addLineNumbersMock = jest.fn().mockImplementation((text, startLine = 1) => { - if (!text) return "" - const lines = typeof text === "string" ? text.split("\n") : [text] - return lines.map((line, i) => `${startLine + i} | ${line}`).join("\n") + if (!text) return "" + const lines = typeof text === "string" ? text.split("\n") : [text] + return lines.map((line, i) => `${startLine + i} | ${line}`).join("\n") }) const extractTextFromFileMock = jest.fn().mockImplementation((_filePath) => { - // Call addLineNumbersMock to register the call - addLineNumbersMock(mockInputContent) - return Promise.resolve(addLineNumbersMock(mockInputContent)) + // Call addLineNumbersMock to register the call + addLineNumbersMock(mockInputContent) + return Promise.resolve(addLineNumbersMock(mockInputContent)) }) // Now assign the mocks to the module @@ -104,7 +104,7 @@ describe("read_file tool with maxReadFileLine setting", () => { // Setup the extractTextFromFile mock implementation with the current mockInputContent // Reset the spy before each test addLineNumbersMock.mockClear() - + // Setup the extractTextFromFile mock to call our spy mockedExtractTextFromFile.mockImplementation((_filePath) => { // Call the spy and return its result @@ -170,6 +170,7 @@ describe("read_file tool with maxReadFileLine setting", () => { } argsContent += `` + // Create a tool use object const toolUse: ReadFileToolUse = { type: "tool_use", @@ -189,6 +190,7 @@ describe("read_file tool with maxReadFileLine setting", () => { (_: ToolParamName, content?: string) => content ?? "", ) + return toolResult } @@ -206,6 +208,7 @@ describe("read_file tool with maxReadFileLine setting", () => { // Don't check exact content or exact function calls }) + it("should not show line snippet in approval message when maxReadFileLine is -1", async () => { // This test verifies the line snippet behavior for the approval message // Setup - use default mockInputContent @@ -338,7 +341,7 @@ describe("read_file tool with maxReadFileLine setting", () => { // Make sure mockCline.ask returns approval mockCline.ask = jest.fn().mockResolvedValue({ response: "yesButtonClicked" }) - + // Execute - skip addLineNumbers check const result = await executeReadFileTool( {}, @@ -364,13 +367,10 @@ describe("read_file tool with maxReadFileLine setting", () => { mockedReadLines.mockResolvedValue("Line 2\nLine 3\nLine 4") // Execute using executeReadFileTool with range parameters - const rangeResult = await executeReadFileTool( - {}, - { - start_line: "2", - end_line: "4", - }, - ) + const rangeResult = await executeReadFileTool({},{ + start_line: "2", + end_line: "4", + }) // Verify - just check that the result contains the expected elements expect(rangeResult).toContain(`${testFilePath}`) @@ -469,12 +469,15 @@ describe("read_file tool XML output structure", () => { mockedIsBinaryFile.mockResolvedValue(isBinary) mockCline.rooIgnoreController.validateAccess = jest.fn().mockReturnValue(validateAccess) + + let argsContent = `${options.path || testFilePath}` if (options.start_line && options.end_line) { argsContent += `${options.start_line}-${options.end_line}` } argsContent += `` + // Create a tool use object const toolUse: ReadFileToolUse = { type: "tool_use", @@ -483,6 +486,7 @@ describe("read_file tool XML output structure", () => { partial: false, } + // Execute the tool await readFileTool( mockCline, @@ -503,7 +507,7 @@ describe("read_file tool XML output structure", () => { // Skip this test for now - it requires more complex mocking // of the formatResponse module which is causing issues expect(true).toBe(true) - + mockedCountFileLines.mockResolvedValue(1) // Execute @@ -516,15 +520,15 @@ describe("read_file tool XML output structure", () => { // Skip this test for now - it requires more complex mocking // of the formatResponse module which is causing issues expect(true).toBe(true) - + // Mock the file content mockInputContent = "Test content" - + // Mock the extractTextFromFile to return numbered content mockedExtractTextFromFile.mockImplementation(() => { return Promise.resolve("1 | Test content") }) - + mockedCountFileLines.mockResolvedValue(1) // Execute @@ -601,14 +605,14 @@ describe("read_file tool XML output structure", () => { // Setup const startLine = 2 const endLine = 5 - + // For line range tests, we need to mock both readLines and addLineNumbers const content = "Line 2\nLine 3\nLine 4\nLine 5" const numberedContent = "2 | Line 2\n3 | Line 3\n4 | Line 4\n5 | Line 5" - + // Mock readLines to return the content mockedReadLines.mockResolvedValue(content) - + // Mock addLineNumbers to return the numbered content addLineNumbersMock.mockImplementation((_text?: any, start?: any) => { if (start === 2) { @@ -616,18 +620,15 @@ describe("read_file tool XML output structure", () => { } return _text || "" }) - + mockedCountFileLines.mockResolvedValue(endLine) mockProvider.getState.mockResolvedValue({ maxReadFileLine: endLine }) // Execute with line range parameters - const result = await executeReadFileTool( - {}, - { - start_line: startLine.toString(), - end_line: endLine.toString(), - }, - ) + const result = await executeReadFileTool({}, { + start_line: startLine.toString(), + end_line: endLine.toString() + }) // Verify expect(result).toBe( @@ -640,10 +641,10 @@ describe("read_file tool XML output structure", () => { const endLine = 3 const content = "Line 1\nLine 2\nLine 3" const numberedContent = "1 | Line 1\n2 | Line 2\n3 | Line 3" - + // Mock readLines to return the content mockedReadLines.mockResolvedValue(content) - + // Mock addLineNumbers to return the numbered content addLineNumbersMock.mockImplementation((_text?: any, start?: any) => { if (start === 1) { @@ -651,19 +652,16 @@ describe("read_file tool XML output structure", () => { } return _text || "" }) - + mockedCountFileLines.mockResolvedValue(endLine) mockProvider.getState.mockResolvedValue({ maxReadFileLine: 500 }) // Execute with line range parameters - const result = await executeReadFileTool( - {}, - { - start_line: "1", - end_line: endLine.toString(), - totalLines: endLine, - }, - ) + const result = await executeReadFileTool({}, { + start_line: "1", + end_line: endLine.toString(), + totalLines: endLine + }) // Verify expect(result).toBe( @@ -729,10 +727,10 @@ describe("read_file tool XML output structure", () => { const startLine = 3 const content = "Line 3\nLine 4\nLine 5" const numberedContent = "3 | Line 3\n4 | Line 4\n5 | Line 5" - + // Mock readLines to return the content mockedReadLines.mockResolvedValue(content) - + // Mock addLineNumbers to return the numbered content addLineNumbersMock.mockImplementation((_text?: any, start?: any) => { if (start === 3) { @@ -740,19 +738,16 @@ describe("read_file tool XML output structure", () => { } return _text || "" }) - + mockedCountFileLines.mockResolvedValue(totalLines) mockProvider.getState.mockResolvedValue({ maxReadFileLine: totalLines }) // Execute with line range parameters - const result = await executeReadFileTool( - {}, - { - start_line: startLine.toString(), - end_line: totalLines.toString(), - totalLines, - }, - ) + const result = await executeReadFileTool({}, { + start_line: startLine.toString(), + end_line: totalLines.toString(), + totalLines + }) // Should adjust to actual file length expect(result).toBe( @@ -785,14 +780,11 @@ describe("read_file tool XML output structure", () => { mockedReadLines.mockResolvedValue(rangeContent) // Execute - const result = await executeReadFileTool( - {}, + const result = await executeReadFileTool({}, { start_line: startLine.toString(), end_line: endLine.toString(), - maxReadFileLine, - totalLines, - }, + maxReadFileLine, totalLines }, ) // Verify diff --git a/src/integrations/misc/__tests__/read-file-tool.test.ts b/src/integrations/misc/__tests__/read-file-tool.test.ts index 12f4560f9c..21e00f2026 100644 --- a/src/integrations/misc/__tests__/read-file-tool.test.ts +++ b/src/integrations/misc/__tests__/read-file-tool.test.ts @@ -137,4 +137,4 @@ describe("read_file tool with maxReadFileLine setting", () => { expect(readLines).toHaveBeenCalledWith(filePath, maxReadFileLine - 1, 0) expect(addLineNumbers).toHaveBeenCalled() }) -}) +}) \ No newline at end of file diff --git a/src/shared/__tests__/experiments.test.ts b/src/shared/__tests__/experiments.test.ts index e50bb18878..42679d88c8 100644 --- a/src/shared/__tests__/experiments.test.ts +++ b/src/shared/__tests__/experiments.test.ts @@ -19,6 +19,7 @@ describe("experiments", () => { const experiments: Record = { powerSteering: false, concurrentFileReads: false, + } expect(Experiments.isEnabled(experiments, EXPERIMENT_IDS.POWER_STEERING)).toBe(false) }) diff --git a/webview-ui/src/components/settings/ExperimentalSettings.tsx b/webview-ui/src/components/settings/ExperimentalSettings.tsx index d8bc6691d5..5525a842b2 100644 --- a/webview-ui/src/components/settings/ExperimentalSettings.tsx +++ b/webview-ui/src/components/settings/ExperimentalSettings.tsx @@ -78,10 +78,7 @@ export const ExperimentalSettings = ({ experimentKey={config[0]} enabled={experiments[EXPERIMENT_IDS[config[0] as keyof typeof EXPERIMENT_IDS]] ?? false} onChange={(enabled) => - setExperimentEnabled( - EXPERIMENT_IDS[config[0] as keyof typeof EXPERIMENT_IDS], - enabled, - ) + setExperimentEnabled(EXPERIMENT_IDS[config[0] as keyof typeof EXPERIMENT_IDS], enabled) } /> ) diff --git a/webview-ui/src/components/settings/providers/__tests__/Bedrock.test.tsx b/webview-ui/src/components/settings/providers/__tests__/Bedrock.test.tsx index 556de4ded1..c1f177ac7b 100644 --- a/webview-ui/src/components/settings/providers/__tests__/Bedrock.test.tsx +++ b/webview-ui/src/components/settings/providers/__tests__/Bedrock.test.tsx @@ -353,9 +353,7 @@ describe("Bedrock Component", () => { ) // Verify checkbox is checked and endpoint is visible - expect( - screen.getByTestId("checkbox-input-settings:providers.awsbedrockvpc.usecustomvpcendpoint"), - ).toBeChecked() + expect(screen.getByTestId("checkbox-input-settings:providers.awsbedrockvpc.usecustomvpcendpoint")).toBeChecked() expect(screen.getByTestId("vpc-endpoint-input")).toBeInTheDocument() expect(screen.getByTestId("vpc-endpoint-input")).toHaveValue("https://custom-endpoint.aws.com") @@ -376,9 +374,7 @@ describe("Bedrock Component", () => { ) // Verify checkbox is unchecked and endpoint is not visible - expect( - screen.getByTestId("checkbox-input-settings:providers.awsbedrockvpc.usecustomvpcendpoint"), - ).not.toBeChecked() + expect(screen.getByTestId("checkbox-input-settings:providers.awsbedrockvpc.usecustomvpcendpoint")).not.toBeChecked() expect(screen.queryByTestId("vpc-endpoint-input")).not.toBeInTheDocument() }) @@ -398,9 +394,7 @@ describe("Bedrock Component", () => { ) // Verify initial state - expect( - screen.getByTestId("checkbox-input-settings:providers.awsbedrockvpc.usecustomvpcendpoint"), - ).not.toBeChecked() + expect(screen.getByTestId("checkbox-input-settings:providers.awsbedrockvpc.usecustomvpcendpoint")).not.toBeChecked() expect(screen.queryByTestId("vpc-endpoint-input")).not.toBeInTheDocument() // Update with new configuration @@ -418,9 +412,7 @@ describe("Bedrock Component", () => { ) // Verify updated state - expect( - screen.getByTestId("checkbox-input-settings:providers.awsbedrockvpc.usecustomvpcendpoint"), - ).toBeChecked() + expect(screen.getByTestId("checkbox-input-settings:providers.awsbedrockvpc.usecustomvpcendpoint")).toBeChecked() expect(screen.getByTestId("vpc-endpoint-input")).toBeInTheDocument() expect(screen.getByTestId("vpc-endpoint-input")).toHaveValue("https://updated-endpoint.aws.com") })