diff --git a/extensions/british-english/cspell.config.yaml b/extensions/british-english/cspell.config.yaml new file mode 100644 index 00000000..b1b4b1a0 --- /dev/null +++ b/extensions/british-english/cspell.config.yaml @@ -0,0 +1,2 @@ +import: + - ./cspell-ext.json diff --git a/extensions/british-english/package.json b/extensions/british-english/package.json index ac862acd..52d8c799 100644 --- a/extensions/british-english/package.json +++ b/extensions/british-english/package.json @@ -71,7 +71,9 @@ "vscode:prepublish": "npm run build", "build": "tsc -p ./", "watch": "tsc -watch -p ./", - "test": "node ../../node_modules/vscode/bin/test" + "test": "npm run test:samples", + "test:samples": "cspell samples", + "test:bin": "node ../../node_modules/vscode/bin/test" }, "dependencies": { "@cspell/dict-en-gb": "^4.1.19" diff --git a/extensions/norwegian-bokmal/package.json b/extensions/norwegian-bokmal/package.json index ff5c05fb..1280f74a 100644 --- a/extensions/norwegian-bokmal/package.json +++ b/extensions/norwegian-bokmal/package.json @@ -71,7 +71,9 @@ "vscode:prepublish": "npm run build", "build": "tsc -p ./", "watch": "tsc -watch -p ./", - "test": "node ../../node_modules/vscode/bin/test" + "test": "npm run test:samples", + "test:samples": "cspell samples", + "test:bin": "node ../../node_modules/vscode/bin/test" }, "dependencies": { "@cspell/dict-nb-no": "^2.0.0" diff --git a/extensions/norwegian-bokmal/samples/cspell.json b/extensions/norwegian-bokmal/samples/cspell.json new file mode 100644 index 00000000..2c63c085 --- /dev/null +++ b/extensions/norwegian-bokmal/samples/cspell.json @@ -0,0 +1,2 @@ +{ +} diff --git a/extensions/norwegian-bokmal/samples/norge.md b/extensions/norwegian-bokmal/samples/norge.md index 89292391..37c36e4e 100644 --- a/extensions/norwegian-bokmal/samples/norge.md +++ b/extensions/norwegian-bokmal/samples/norge.md @@ -13,6 +13,6 @@ Størstedelen av befolkningen er nordisk. De siste par årene har innvandring ut diff --git a/extensions/norwegian-bokmal/vsc-extension-quickstart.md b/extensions/norwegian-bokmal/vsc-extension-quickstart.md deleted file mode 100644 index 1932aabc..00000000 --- a/extensions/norwegian-bokmal/vsc-extension-quickstart.md +++ /dev/null @@ -1,38 +0,0 @@ -# Welcome to your first VS Code Extension - -## What's in the folder - -- This folder contains all of the files necessary for your extension -- `package.json` - this is the manifest file in which you declare your extension and command. - The sample plugin registers a command and defines its title and command name. With this information - VS Code can show the command in the command palette. It doesn’t yet need to load the plugin. -- `src/extension.ts` - this is the main file where you will provide the implementation of your command. - The file exports one function, `activate`, which is called the very first time your extension is - activated (in this case by executing the command). Inside the `activate` function we call `registerCommand`. - We pass the function containing the implementation of the command as the second parameter to - `registerCommand`. - -## Get up and running straight away - -- press `F5` to open a new window with your extension loaded -- run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World` -- set breakpoints in your code inside `src/extension.ts` to debug your extension -- find output from your extension in the debug console - -## Make changes - -- you can relaunch the extension from the debug toolbar after changing code in `src/extension.ts` -- you can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes - -## Explore the API - -- you can open the full set of our API when you open the file `node_modules/vscode/vscode.d.ts` - -## Run tests - -- open the debug viewlet (`Ctrl+Shift+D` or `Cmd+Shift+D` on Mac) and from the launch configuration dropdown pick `Launch Tests` -- press `F5` to run the tests in a new window with your extension loaded -- see the output of the test result in the debug console -- make changes to `test/extension.test.ts` or create new test files inside the `test` folder - - by convention, the test runner will only consider files matching the name pattern `**.test.ts` - - you can create folders inside the `test` folder to structure your tests any way you want diff --git a/extensions/turkish/cspell.config.yaml b/extensions/turkish/cspell.config.yaml new file mode 100644 index 00000000..b1b4b1a0 --- /dev/null +++ b/extensions/turkish/cspell.config.yaml @@ -0,0 +1,2 @@ +import: + - ./cspell-ext.json diff --git a/extensions/turkish/package.json b/extensions/turkish/package.json index 19b84c87..cf551fab 100644 --- a/extensions/turkish/package.json +++ b/extensions/turkish/package.json @@ -71,7 +71,9 @@ "vscode:prepublish": "npm run build", "build": "tsc -p ./", "watch": "tsc -watch -p ./", - "test": "node ../../node_modules/vscode/bin/test" + "test": "npm run test:samples", + "test:samples": "cspell samples", + "test:bin": "node ../../node_modules/vscode/bin/test" }, "dependencies": { "@cspell/dict-tr-tr": "^3.0.0" diff --git a/extensions/turkish/samples/seattle.md b/extensions/turkish/samples/seattle.md index 34cb909e..70da5c88 100644 --- a/extensions/turkish/samples/seattle.md +++ b/extensions/turkish/samples/seattle.md @@ -15,3 +15,18 @@ Seattle'da yaşayan nüfusun %12'si 65 yaşın üzerindedir. 2000 yılı değerl Politika ve yaşam Seattle, kuzeybatısındaki Tacoma ve Olympia gibi kentlerin de etkisiyle ABD'nin geneline kıyasla daha çok demokratların hakim olduğu, sola yatkın bir yerdir. Yine de metro bölgesi gibi, liberallerin yoğunlukta olduğu yerler de vardır. ABD'nin en açık görüşlü yerlerinden biri olarak bilinen Seattle'ın Capitol Hill bölgesinde de hayli geniş bir eşcinsel topluluk yaşamaktadır. + + diff --git a/extensions/turkish/vsc-extension-quickstart.md b/extensions/turkish/vsc-extension-quickstart.md deleted file mode 100644 index 1932aabc..00000000 --- a/extensions/turkish/vsc-extension-quickstart.md +++ /dev/null @@ -1,38 +0,0 @@ -# Welcome to your first VS Code Extension - -## What's in the folder - -- This folder contains all of the files necessary for your extension -- `package.json` - this is the manifest file in which you declare your extension and command. - The sample plugin registers a command and defines its title and command name. With this information - VS Code can show the command in the command palette. It doesn’t yet need to load the plugin. -- `src/extension.ts` - this is the main file where you will provide the implementation of your command. - The file exports one function, `activate`, which is called the very first time your extension is - activated (in this case by executing the command). Inside the `activate` function we call `registerCommand`. - We pass the function containing the implementation of the command as the second parameter to - `registerCommand`. - -## Get up and running straight away - -- press `F5` to open a new window with your extension loaded -- run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World` -- set breakpoints in your code inside `src/extension.ts` to debug your extension -- find output from your extension in the debug console - -## Make changes - -- you can relaunch the extension from the debug toolbar after changing code in `src/extension.ts` -- you can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes - -## Explore the API - -- you can open the full set of our API when you open the file `node_modules/vscode/vscode.d.ts` - -## Run tests - -- open the debug viewlet (`Ctrl+Shift+D` or `Cmd+Shift+D` on Mac) and from the launch configuration dropdown pick `Launch Tests` -- press `F5` to run the tests in a new window with your extension loaded -- see the output of the test result in the debug console -- make changes to `test/extension.test.ts` or create new test files inside the `test` folder - - by convention, the test runner will only consider files matching the name pattern `**.test.ts` - - you can create folders inside the `test` folder to structure your tests any way you want diff --git a/extensions/vietnamese/cspell.config.yaml b/extensions/vietnamese/cspell.config.yaml new file mode 100644 index 00000000..b1b4b1a0 --- /dev/null +++ b/extensions/vietnamese/cspell.config.yaml @@ -0,0 +1,2 @@ +import: + - ./cspell-ext.json diff --git a/extensions/vietnamese/package.json b/extensions/vietnamese/package.json index 6d0cd280..9fd184cb 100644 --- a/extensions/vietnamese/package.json +++ b/extensions/vietnamese/package.json @@ -71,7 +71,9 @@ "vscode:prepublish": "npm run build", "build": "tsc -p ./", "watch": "tsc -watch -p ./", - "test": "node ../../node_modules/vscode/bin/test" + "test": "npm run test:samples", + "test:samples": "cspell samples", + "test:bin": "node ../../node_modules/vscode/bin/test" }, "dependencies": { "@cspell/dict-vi-vn": "^3.0.0" diff --git a/extensions/vietnamese/samples/seattle.md b/extensions/vietnamese/samples/seattle.md index 97220f0c..dfcf7377 100644 --- a/extensions/vietnamese/samples/seattle.md +++ b/extensions/vietnamese/samples/seattle.md @@ -9,3 +9,11 @@ Seattle nổi tiếng với việc tiêu thụ nhiều cà phê;[8] các công t Xét về thu nhập bình quân đầu người, một nghiên cứu của Cục phân tích kinh tế Mĩ xếp hạng vùng đô thị Seattle đứng thứ 17 trong 363 khu vực đô thị trong năm 2006.[14] Seattle từ một vùng kinh tế lạc hậu, nay đã phát triển mạnh mẽ về trung tâm công nghệ thông tin, hàng không, kiến trúc và các ngành công nghiệp giải trí. Thành phố được biết đến như một trung tâm của những người yêu công nghệ "xanh".[15] Các tuyến đường sắt và xe điện thô sơ (street car) đã từng thống trị hệ thống giao thông nhưng đã bị thay thế phần lớn bằng một hệ thống xe buýt dày đặc và sự phát triện nhanh chóng đã khiến cho xe hơi trở thành phương tiện chính của người dân từ giữa đến cuối thế kỉ XX. Chính vì vậy, Seattle đã trở thành một trong những thành phố có nạn ùn tắc giao thông nhiều nhất nước Mĩ. Mặc dù vậy, những nỗ lực để thay đổi vấn nạn này tại các khu vực và các cơ quan chức năng đã dẫn đến dịch vụ đường sắt mới nối Seattle đến Everett và Tahoma, liên kết khu vực Light Rail về phía Nam từ khu Trung tâm và khu nội thành South Lake Union bằng tuyến đường sắt South Lake Union. Một tuyến đường mở rộng ở phía Nam đi tới Sân bay Quốc tế Seattle-Tahoma bắt đầu được đưa vào sử dụng từ ngày 19 tháng 12 năm 2009; tuyến đường mở rộng ở phía Bắc thì đi đến Đại học Washington được xây dựng vào năm 2010; và một vài mở rộng xa hơn như kế hoạch đi đến Lynnwood ở phía Bắc, Des Moines ở phía Nam, và Bellevue và Redmond ở phía Đông vào năm 2023.[16] + +