aboutsummaryrefslogtreecommitdiff
path: root/files/vi/tools
diff options
context:
space:
mode:
authorRyan Johnson <rjohnson@mozilla.com>2021-04-29 16:16:42 -0700
committerGitHub <noreply@github.com>2021-04-29 16:16:42 -0700
commit95aca4b4d8fa62815d4bd412fff1a364f842814a (patch)
tree5e57661720fe9058d5c7db637e764800b50f9060 /files/vi/tools
parentee3b1c87e3c8e72ca130943eed260ad642246581 (diff)
downloadtranslated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip
remove retired locales (#699)
Diffstat (limited to 'files/vi/tools')
-rw-r--r--files/vi/tools/browser_toolbox/index.html58
-rw-r--r--files/vi/tools/index.html212
-rw-r--r--files/vi/tools/network_monitor/index.html63
-rw-r--r--files/vi/tools/page_inspector/index.html77
-rw-r--r--files/vi/tools/remote_debugging/index.html99
5 files changed, 0 insertions, 509 deletions
diff --git a/files/vi/tools/browser_toolbox/index.html b/files/vi/tools/browser_toolbox/index.html
deleted file mode 100644
index 6b3a9a7f7f..0000000000
--- a/files/vi/tools/browser_toolbox/index.html
+++ /dev/null
@@ -1,58 +0,0 @@
----
-title: Browser Toolbox
-slug: Tools/Browser_Toolbox
-translation_of: Tools/Browser_Toolbox
----
-<p>The Browser Toolbox enables you to debug add-ons and the browser's own JavaScript code rather than just web pages like the normal <a href="/en-US/docs/Tools_Toolbox">Toolbox</a>.  The Browser Toolbox's context is the whole browser rather than just single page on a single tab.</p>
-
-<p><em>Note:  If you want to debug a specific add-on that is restartless or SDK-based then try the <a href="/en-US/Add-ons/Add-on_Debugger">Add-on Debugger</a>.  Use the Browser Toolbox for add-ons that are neither.</em></p>
-
-<h2 id="Enabling_the_Browser_Toolbox" style="line-height: 30px; font-size: 2.14285714285714rem;">Enabling the Browser Toolbox </h2>
-
-<div>
-<p>The Browser Toolbox is not enabled by default.  To enable it you need to check the settings "Enable chrome and addon debugging" and "Enable remote debugging".</p>
-
-<p>To do this, open the Developer Tools <a href="https://developer.mozilla.org/en-US/docs/Tools/Tools_Toolbox">Toolbox</a>'s <a href="https://developer.mozilla.org/en-US/docs/Tools/Tools_Toolbox#Settings">Settings</a>, go to the section "<a href="https://developer.mozilla.org/en-US/docs/Tools/Tools_Toolbox#Advanced_settings">Advanced Settings</a>", and check the settings "Enable browser chrome and add-on debugging toolboxes" and "Enable remote debugging".</p>
-
-<p><img alt="Developer Tools Settings" src="https://mdn.mozillademos.org/files/11125/enable-browser-toolbox.png" style="display: block; height: 923px; margin-left: auto; margin-right: auto; width: 900px;"></p>
-</div>
-
-<h2 id="Opening_the_Browser_Toolbox"><span style="font-size: 2.14285714285714rem;">Opening</span> the Browser Toolbox</h2>
-
-<p><span style="line-height: 1.5;">Open the Browser Toolbox through the </span><span style="line-height: 1.5;">menu button </span><img alt="new fx menu" class="frameless wiki-image" src="https://support.cdn.mozilla.net/media/uploads/gallery/images/2014-01-10-13-08-08-f52b8c.png" style="line-height: 1.5;" title=""><span style="line-height: 1.5;"> and the menu items "Developer" then "Browser Toolbox".</span><span style="line-height: 1.5;"> </span></p>
-
-<p><span style="line-height: 1.5;">From Firefox 39, you can also open it with the </span><kbd>Ctrl</kbd> + <kbd>Alt</kbd> +<kbd>Shift</kbd> + <kbd>I</kbd>  key combination ( <kbd>Cmd</kbd> + <kbd>Opt</kbd> +<kbd>Shift</kbd> + <kbd>I</kbd> on a Mac).</p>
-
-<p><span style="line-height: 1.5;">You'll then be presented with a dialog like this (this can be removed by setting the </span><code style="font-style: normal; line-height: 1.5;">devtools.debugger.prompt-connection</code><span style="line-height: 1.5;"> property to false):</span></p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/11119/browser-toolbox-warning.png" style="display: block; height: 326px; margin-left: auto; margin-right: auto; width: 600px;">Click OK, and the Browser Toolbox will open in its own window:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/11121/browser-toolbox.png" style="display: block; height: 649px; margin-left: auto; margin-right: auto; width: 900px;">You'll be able to inspect the browser's XUL windows and see, and be able to debug, all the JavaScript files loaded by the browser itself and by any add-ons that are running. Altogether you will have access to the following developer tools:</p>
-
-<ul>
- <li><a href="/en-US/docs/Tools/Debugger">Debugger</a>  (<em>Note:  If you want to debug a specific add-on that is restartless or SDK-based then try the <a href="/en-US/Add-ons/Add-on_Debugger">Add-on Debugger</a>.)</em></li>
- <li><a href="/en-US/docs/Tools/Browser_Console">Console</a></li>
- <li><a href="/en-US/docs/Tools/Style_Editor">Style Editor</a></li>
- <li><a href="/en-US/docs/Tools/Profiler">Performance</a></li>
- <li><a href="/en-US/docs/Tools/Network_Monitor">Network Monitor</a></li>
- <li><a href="/en-US/docs/Tools/Scratchpad">Scratchpad</a></li>
- <li><a href="/en-US/docs/Tools/Page_Inspector">Page Inspector</a></li>
-</ul>
-
-<h2 id="Debugging_chrome_and_about_pages">Debugging chrome: and about: pages</h2>
-
-<p>From Firefox 37 onwards, you can debug chrome: and about: pages using the normal <a href="/en-US/docs/Tools/Debugger">Debugger</a>, just as if they were ordinary content pages.</p>
-
-<h2 id="Targeting_a_document">Targeting a document</h2>
-
-<p>In the normal toolbox, there's a <a href="/en-US/docs/Tools/Working_with_iframes">button in the toolbar enabling you to target specific iframes in the document</a>. From Firefox 40 onwards the same button appears in the browser toolbox as well, but this lists all the top-level chrome and content windows as well as any iframes they contain. This enables you to inspect documents in individual chrome windows and popups, as well as in content tabs.</p>
-
-<p>For example, here's what the frame selection popup lists when there are two browser windows open, one with one content tab, and one with two:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/11117/browser-toolbox-iframes.png" style="display: block; height: 652px; margin-left: auto; margin-right: auto; width: 900px;"></p>
-
-<p> </p>
-
-<p> </p>
-
-<p> </p>
diff --git a/files/vi/tools/index.html b/files/vi/tools/index.html
deleted file mode 100644
index 81f975285d..0000000000
--- a/files/vi/tools/index.html
+++ /dev/null
@@ -1,212 +0,0 @@
----
-title: Công cụ dành cho nhà phát triển của Firefox
-slug: Tools
-translation_of: Tools
----
-<div>{{ToolsSidebar}}</div>
-
-<p class="summary">Firefox Developer Tools là một bộ công cụ dành cho nhà phát triển web được tích hợp trong Firefox. Bạn có thể sử dụng chúng để kiểm tra, chỉnh sửa và gỡ lỗi HTML, CSS, và JavaScript.</p>
-
-<p>Phần này chứa các hướng dẫn chi tiết về tất cả các công cụ cũng như thông tin về cách gỡ lỗi Firefox dành cho Android, cách mở rộng DevTools và cách gỡ lỗi toàn bộ trình duyệt.</p>
-
-<p>Nếu bạn có bất kỳ phản hồi nào về DevTools hoặc muốn đóng góp cho dự án, bạn có thể <a href="https://firefox-dev.tools/">tham gia cộng đồng DevTools</a>.</p>
-
-<div class="note">
-<p><strong>Lưu ý</strong>: Nếu bạn mới bắt đầu phát triển web và sử dụng các công cụ dành cho nhà phát triển, tài liệu <a href="/vi/docs/Learn">kiến thức</a> của chúng tôi sẽ giúp bạn — xem bài viết <a href="/en-US/docs/Learn/Getting_started_with_the_web">Bắt đầu với Web</a> và <a href="/en-US/docs/Learn/Common_questions/What_are_browser_developer_tools">Công cụ dành cho nhà phát triển của trình duyệt là gì?</a> là điểm khởi đầu tốt.</p>
-</div>
-
-<h2 id="Các_công_cụ_cốt_lõi">Các công cụ cốt lõi</h2>
-
-<p>Bạn có thể mở Firefox Developer Tools từ menu bằng cách chọn <em>Tools</em> &gt; <em>Web Developer</em> &gt; <em>Toggle Tools</em> hoặc sử dụng phím tắt <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>I</kbd> hoặc <kbd>F12</kbd> trên Windows và Linux, hoặc <kbd>Cmd</kbd> + <kbd>Opt</kbd> + <kbd>I</kbd> trên macOS.</p>
-
-<p>Menu dấu chấm lửng ở phía bên phải của Công cụ dành cho nhà phát triển chứa một số lệnh cho phép bạn thực hiện các hành động hoặc thay đổi cài đặt công cụ.</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/16087/DevTools_LayoutMenu.png" style="display: block; height: 290px; margin: 0 auto; width: 225px;"></p>
-
-<table class="standard-table" style="height: 178px; width: 840px;">
- <tbody>
- <tr>
- <td><img alt="" src="https://mdn.mozillademos.org/files/16092/iframe_button.png" style="height: 69px; width: 69px;"></td>
- <td>Nút này chỉ xuất hiện khi có nhiều iframe trên một trang. Nhấp vào nó để hiển thị danh sách các khung nội tuyến trên trang hiện tại và chọn khung mà bạn muốn làm việc.</td>
- </tr>
- <tr>
- <td><img alt="" src="https://mdn.mozillademos.org/files/16088/camera_button.png" style="height: 69px; width: 69px;"></td>
- <td>Nhấp vào nút này để chụp ảnh màn hình của trang hiện tại. (<strong>Lưu ý:</strong> Tính năng này không được bật theo mặc định và phải được bật trong cài đặt trước khi biểu tượng xuất hiện.)</td>
- </tr>
- <tr>
- <td><img alt="" src="https://mdn.mozillademos.org/files/16089/responsive_button.png" style="height: 69px; width: 69px;"></td>
- <td>Chuyển sang Chế độ thiết kế tương thích.</td>
- </tr>
- <tr>
- <td><img alt="" src="https://mdn.mozillademos.org/files/16090/menu_button.png" style="height: 69px; width: 69px;"></td>
- <td>Mở menu bao gồm các tùy chọn gắn đế, khả năng hiển thị hoặc ẩn bảng điều khiển phân tách và cài đặt công cụ dành cho nhà phát triển. Menu cũng bao gồm các liên kết đến tài liệu cho Firefox Web Tools và cộng đồng Mozilla.</td>
- </tr>
- <tr>
- <td><img alt="" src="https://mdn.mozillademos.org/files/16091/close_button.png" style="height: 69px; width: 69px;"></td>
- <td>Đóng công cụ dành cho nhà phát triển</td>
- </tr>
- </tbody>
-</table>
-
-<div class="column-container">
-<div class="column-half">
-<h3 id="Trang_Trình_kiểm_tra">Trang Trình kiểm tra</h3>
-
-<p><a href="/en-US/docs/Tools/Page_Inspector"><img alt="The all-new Inspector panel in Firefox 57." src="https://mdn.mozillademos.org/files/16371/landingPage_PageInspector.png" style="border: 1px solid black; display: block; height: 171px; margin-left: auto; margin-right: auto; width: 425px;"></a></p>
-
-<p>Xem và chỉnh sửa nội dung và bố cục trang. Hình dung nhiều khía cạnh của trang bao gồm mô hình hộp, hoạt ảnh và bố cục lưới.</p>
-</div>
-
-<div class="column-half">
-<h3 id="Bảng_điều_khiển_Web">Bảng điều khiển Web</h3>
-
-<p><a href="/en-US/docs/Tools/Web_Console"><img alt="The all-new Console in Firefox 57." src="https://mdn.mozillademos.org/files/16368/landingPage_Console.png" style="border: 1px solid black; display: block; height: 403px; margin-left: auto; margin-right: auto; width: 425px;"></a></p>
-
-<p>Xem thông báo được ghi lại bởi một trang web và tương tác với trang đó bằng JavaScript.</p>
-</div>
-</div>
-
-<div class="column-container">
-<div class="column-half">
-<h3 id="Trình_gỡ_lỗi_JavaScript">Trình gỡ lỗi JavaScript</h3>
-
-<p><a href="/en-US/docs/Tools/Debugger"><img alt="The all-new Firefox 57 Debugger.html" src="https://mdn.mozillademos.org/files/16369/landingPage_Debugger.png" style="border: 1px solid black; display: block; height: 403px; margin-left: auto; margin-right: auto; width: 425px;"></a></p>
-
-<p>Dừng, thực hiện từng bước, xem và chỉnh sửa JavaScript đang chạy trong một trang.</p>
-</div>
-
-<div class="column-half">
-<h3 id="Giám_sát_mạng">Giám sát mạng</h3>
-
-<p><a href="/en-US/docs/Tools/Network_Monitor"><img alt="The Network panel in Firefox 57 DevTools." src="https://mdn.mozillademos.org/files/16370/landingPage_Network.png" style="border: 1px solid black; display: block; height: 403px; margin-left: auto; margin-right: auto; width: 425px;"></a></p>
-
-<p>Xem các yêu cầu mạng được thực hiện khi một trang đang được tải.</p>
-</div>
-</div>
-
-<div class="column-container">
-<div class="column-half">
-<h3 id="Công_cụ_hiệu_suất">Công cụ hiệu suất</h3>
-
-<p><a href="/en-US/docs/Tools/Performance"><img alt="Performance Tools in Firefox 57 Developer Tools" src="https://mdn.mozillademos.org/files/16372/landingPage_Performance.png" style="border: 1px solid black; display: block; height: 403px; margin-left: auto; margin-right: auto; width: 425px;"></a></p>
-
-<p>Phân tích hiệu suất đáp ứng, JavaScript và bố cục chung của trang web của bạn.</p>
-</div>
-
-<div class="column-half">
-<h3 id="Chế_độ_thiết_kế_tương_thích">Chế độ thiết kế tương thích</h3>
-
-<p><a href="/en-US/docs/Tools/Responsive_Design_Mode"><img alt="Responsive Design mode in Firefox 57." src="https://mdn.mozillademos.org/files/16373/landingPage_ResponsiveDesign.png" style="border-style: solid; border-width: 1px; display: block; height: 865px; margin-left: auto; margin-right: auto; width: 425px;"></a></p>
-
-<p>Xem trang web hoặc ứng dụng của bạn sẽ trông như thế nào và hoạt động như thế nào trên các thiết bị và loại mạng khác nhau.</p>
-</div>
-</div>
-
-<div class="column-container">
-<div class="column-half">
-<h3 id="Trình_kiểm_tra_trợ_năng">Trình kiểm tra trợ năng</h3>
-
-<p><a href="/en-US/docs/Tools/Accessibility_inspector"><img alt="Performance Tools in Firefox 57 Developer Tools" src="https://mdn.mozillademos.org/files/16367/landingPage_Accessibility.png" style="border-style: solid; border-width: 1px; border: 1px solid black; display: block; height: 403px; margin-left: auto; margin-right: auto; width: 425px;"></a></p>
-
-<p>Cung cấp phương tiện để truy cập cây trợ năng của trang, cho phép bạn kiểm tra những gì còn thiếu hoặc cần chú ý.</p>
-</div>
-
-<div class="column-half">
-<h3 id="Bảng_Ứng_dụng">Bảng Ứng dụng</h3>
-
-<p><a href="/en-US/docs/Tools/Application"><img alt="Performance Tools in Firefox 57 Developer Tools" src="https://mdn.mozillademos.org/files/17307/just-application-panel.jpg" style="border: 1px solid black; display: block; height: 162px; margin-left: auto; margin-right: auto; width: 425px;"></a></p>
-
-<p>Cung cấp các công cụ để kiểm tra và gỡ lỗi các ứng dụng web hiện đại (còn được gọi là <a href="/en-US/docs/Web/Progressive_web_apps">Progressive Web Apps</a>). Điều này bao gồm việc kiểm tra <a href="/en-US/docs/Web/API/Service_Worker_API">service workers</a> và <a href="/en-US/docs/Web/Manifest">bản kê khai ứng dụng web</a>.</p>
-</div>
-</div>
-
-<div class="note">
-<p><strong>Lưu ý</strong>: Thuật ngữ chung cho giao diện người dùng mà tất cả các Công cụ DevTools tồn tại là <a href="/en-US/docs/Tools/Tools_Toolbox">hộp công cụ</a>.</p>
-</div>
-
-<h2 id="Nhiều_công_cụ_hơn">Nhiều công cụ hơn</h2>
-
-<p>Các công cụ dành cho nhà phát triển này cũng được tích hợp sẵn trong Firefox. Không giống như "công cụ cốt lõi ở trên" ở trên, bạn có thể không sử dụng chúng hàng ngày.</p>
-
-<div class="twocolumns">
-<dl>
- <dt><a href="/en-US/docs/Tools/Memory">Bộ nhớ</a></dt>
- <dd>Tìm ra những đối tượng nào đang sử dụng bộ nhớ.</dd>
- <dt><a href="/en-US/docs/Tools/Storage_Inspector">Trình kiểm tra lưu trữ</a></dt>
- <dd>Kiểm tra cookie, bộ nhớ cục bộ, indexedDB và bộ nhớ phiên có trong một trang.</dd>
- <dt><a href="/en-US/docs/Tools/DOM_Property_Viewer">Trình xem thuộc tính DOM</a></dt>
- <dd>Kiểm tra các thuộc tính, chức năng DOM của trang, v.v.</dd>
- <dt><a href="/en-US/docs/Tools/Eyedropper">Eyedropper</a></dt>
- <dd>Chọn một màu từ trang.</dd>
- <dt><a href="/en-US/docs/Tools/Style_Editor">Style Editor</a></dt>
- <dd>Xem và chỉnh sửa các kiểu CSS cho trang hiện tại.</dd>
- <dt><a href="/en-US/docs/Tools/Screenshot_tool">Tạo ảnh chụp màn hình</a></dt>
- <dd>Chụp ảnh màn hình của toàn bộ trang hoặc của một phần tử đơn lẻ.</dd>
- <dt><a href="/en-US/docs/Tools/Measure_a_portion_of_the_page">Đo lường một phần của trang</a></dt>
- <dd>Đo lường một khu vực cụ thể của một trang web.</dd>
- <dt><a href="/en-US/docs/Tools/Rulers">Thước</a></dt>
- <dd>Chồng các thước kẻ ngang và dọc trên một trang web</dd>
-</dl>
-</div>
-
-<div class="column-container">
-<div class="column-third">
-<p><img alt="" src="https://mdn.mozillademos.org/files/15588/logo-developer-quantum.png" style="display: block; margin: 0px auto;"></p>
-
-<p style="text-align: center;">Để có các công cụ và tính năng mới nhất dành cho nhà phát triển, hãy thử Firefox Developer Edition.</p>
-
-<p><a href="https://www.mozilla.org/en-US/firefox/developer/">Tải xuống Firefox Developer Edition</a></p>
-</div>
-</div>
-
-<h2 id="Kết_nối_các_công_cụ_dành_cho_nhà_phát_triển">Kết nối các công cụ dành cho nhà phát triển</h2>
-
-<p>Nếu bạn mở các công cụ dành cho nhà phát triển bằng <a href="/en-US/docs/Tools/Keyboard_shortcuts#Opening_and_closing_tools">phím tắt bàn phím</a> hoặc các mục menu tương đương, chúng sẽ nhắm mục tiêu tài liệu được lưu trữ bởi thẻ hiện đang hoạt động. Nhưng bạn cũng có thể đính kèm các công cụ vào nhiều mục tiêu khác, cả trong trình duyệt hiện tại và trong các trình duyệt khác nhau hoặc thậm chí các thiết bị khác nhau.</p>
-
-<div class="twocolumns">
-<dl>
- <dt><a href="/en-US/docs/Tools/about:debugging">about:debugging</a></dt>
- <dd>Gỡ lỗi các tiện ích, nội dung thẻ và worker đang chạy trong trình duyệt.</dd>
- <dt><a href="/en-US/docs/Tools/Remote_Debugging/Debugging_Firefox_for_Android_over_Wifi">Kết nối với Firefox dành cho Android</a></dt>
- <dd>Kết nối các công cụ dành cho nhà phát triển với một phiên bản Firefox chạy trên thiết bị Android.</dd>
- <dt><a href="/en-US/docs/Tools/Working_with_iframes">Kết nối với iframe</a></dt>
- <dd>Kết nối các công cụ dành cho nhà phát triển với một iframe cụ thể trong trang hiện tại.</dd>
- <dt><a href="/en-US/docs/Tools/Valence">Kết nối với các trình duyệt khác</a></dt>
- <dd>Kết nối các công cụ dành cho nhà phát triển với Chrome trên Android và Safari trên iOS.</dd>
-</dl>
-</div>
-
-<h2 id="Gỡ_lỗi_trình_duyệt">Gỡ lỗi trình duyệt</h2>
-
-<p>Theo mặc định, các công cụ dành cho nhà phát triển được đính kèm với một trang web hoặc ứng dụng web. Nhưng bạn cũng có thể kết nối chúng với toàn bộ trình duyệt. Điều này hữu ích cho việc phát triển trình duyệt và tiện ích.</p>
-
-<div class="twocolumns">
-<dl>
- <dt><a href="/en-US/docs/Tools/Browser_Console">Bảng điều khiển trình duyệt</a></dt>
- <dd>Xem các thông báo được ghi lại bởi chính trình duyệt và bởi các tiện ích, đồng thời chạy mã JavaScript trong phạm vi của trình duyệt.</dd>
- <dt><a href="/en-US/docs/Tools/Browser_Toolbox">Hộp công cụ trình duyệt</a></dt>
- <dd>Đính kèm công cụ dành cho nhà phát triển vào chính trình duyệt.</dd>
- <dt></dt>
-</dl>
-</div>
-
-<h2 id="Mở_rộng_DevTools">Mở rộng DevTools</h2>
-
-<p>Để biết thông tin về cách mở rộng Firefox DevTools, hãy xem <a href="/en-US/docs/Mozilla/Add-ons/WebExtensions/Extending_the_developer_tools">Extending the developer tools</a> trong phần <a href="/en-US/docs/Mozilla/Add-ons/WebExtensions">Browser Extensions</a> của MDN.</p>
-
-<h2 id="Di_chuyển_từ_Firebug">Di chuyển từ Firebug</h2>
-
-<p>Firebug đã không còn được hỗ trợ (xem <a href="https://hacks.mozilla.org/2016/12/firebug-lives-on-in-firefox-devtools/">Firebug tồn tại trên Firefox DevTools</a> để biết chi tiết vì sao), và chúng tôi đánh giá cao rằng một số người sẽ thấy việc di chuyển sang một bộ DevTools khác ít quen thuộc hơn là một thách thức. Để dễ dàng chuyển đổi từ Firebug sang các công cụ dành cho nhà phát triển Firefox, chúng tôi đã viết một hướng dẫn hữu ích — <a href="/en-US/docs/Tools/Migrating_from_Firebug">Di chuyển từ Firebug</a>.</p>
-
-<h2 id="Đóng_góp">Đóng góp</h2>
-
-<p>Nếu bạn muốn giúp cải thiện các công cụ dành cho nhà phát triển, các tài nguyên này sẽ giúp bạn bắt đầu.</p>
-
-<div class="twocolumns">
-<dl>
- <dt><a href="https://firefox-dev.tools/">Tham gia</a></dt>
- <dd>Trang web cộng đồng của chúng tôi giải thích cách tham gia.</dd>
- <dt><a href="http://bugs.firefox-dev.tools/">bugs.firefox-dev.tools</a></dt>
- <dd>Một công cụ giúp tìm ra lỗi để giải quyết.</dd>
-</dl>
-</div>
diff --git a/files/vi/tools/network_monitor/index.html b/files/vi/tools/network_monitor/index.html
deleted file mode 100644
index 41c31b6461..0000000000
--- a/files/vi/tools/network_monitor/index.html
+++ /dev/null
@@ -1,63 +0,0 @@
----
-title: Network Monitor
-slug: Tools/Network_Monitor
-tags:
- - Debugging
- - Dev Tools
- - Firefox
- - Guide
- - NeedsTranslation
- - Networking
- - Tools
- - TopicStub
- - 'l10n:priority'
-translation_of: Tools/Network_Monitor
----
-<div>{{ToolsSidebar}}</div>
-
-<p>The Network Monitor shows you all the network requests Firefox makes (for example, when it loads a page, or due to <a href="/en-US/docs/Web/API/XMLHttpRequest">XMLHttpRequests</a>), how long each request takes, and details of each request.</p>
-
-<h2 id="Opening_the_Network_Monitor">Opening the Network Monitor</h2>
-
-<p>There are a few different ways to open the Network Monitor:</p>
-
-<ul>
- <li>Press  <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>E</kbd> ( <kbd>Command</kbd> + <kbd>Option</kbd> + <kbd>E</kbd> on a Mac).</li>
- <li>Select "Network" from the Web Developer menu, (which is a submenu of the Tools menu on OS X and Linux).</li>
- <li>Click the wrench icon (<img alt="" src="https://mdn.mozillademos.org/files/12710/wrench-icon.png" style="height: 21px; width: 21px;">), which is in the main toolbar or under the Hamburger menu (<img alt="" src="https://mdn.mozillademos.org/files/12712/hamburger.png" style="height: 20px; width: 22px;">), then select "Network".</li>
-</ul>
-
-<p>The Network Monitor will appear at the bottom of the browser window. Reload the page to see the requests:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/16245/network_monitor.png" style="border: 1px solid black; display: block; height: 541px; margin: 0px auto; width: 800px;" title=""></p>
-
-<p>The Network Monitor records network requests any time the Toolbox is open, even if the Network Monitor itself is not selected. This means you can start debugging a page in, for example, the Web Console, then switch to the Network Monitor to see network activity without having to reload the page.</p>
-
-<h2 id="UI_overview">UI overview</h2>
-
-<p>The UI is divided into four main pieces:</p>
-
-<ul>
- <li>The main screen contains the <a href="/en-US/docs/Tools/Network_Monitor/Toolbar">toolbar</a>, the <a href="/en-US/docs/Tools/Network_Monitor/request_list">network request list</a>, and the <a href="/en-US/docs/Tools/Network_Monitor/request_details">network request details pane</a>:</li>
-</ul>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/16246/Network_Monitor_Closeup.png" style="border: 1px solid black; display: block; height: 747px; margin: 0px auto; width: 800px;" title=""></p>
-
-<ul>
- <li>The <a href="/en-US/docs/Tools/Network_Monitor/Performance_analysis">performance analysis</a> view is a separate screen:</li>
-</ul>
-
-<p><img alt="Performance analysis view" src="https://mdn.mozillademos.org/files/16276/network_performance.png" style="border: 1px solid black; display: block; height: 1176px; margin-left: auto; margin-right: auto; width: 1382px;" title=""></p>
-
-<h2 id="Working_with_the_network_monitor">Working with the network monitor</h2>
-
-<p>The following articles cover different aspects of using the network monitor:</p>
-
-<ul>
- <li><a href="/en-US/docs/Tools/Network_Monitor/Toolbar">Toolbar</a></li>
- <li><a href="/en-US/docs/Tools/Network_Monitor/request_list">Network request list</a></li>
- <li><a href="/en-US/docs/Tools/Network_Monitor/request_details">Network request details</a></li>
- <li><a href="/en-US/docs/Tools/Network_Monitor/recording">Network traffic recording</a></li>
- <li><a href="/en-US/docs/Tools/Network_Monitor/Performance_Analysis">Performance analysis</a></li>
- <li><a href="/en-US/docs/Tools/Network_Monitor/Throttling">Throttling</a></li>
-</ul>
diff --git a/files/vi/tools/page_inspector/index.html b/files/vi/tools/page_inspector/index.html
deleted file mode 100644
index a352508200..0000000000
--- a/files/vi/tools/page_inspector/index.html
+++ /dev/null
@@ -1,77 +0,0 @@
----
-title: Page Inspector
-slug: Tools/Page_Inspector
-translation_of: Tools/Page_Inspector
----
-<p>Sử dụng Page Inspector để kiểm tra và sửa đổi HTML và CSS của một trang web</p>
-
-<p>Bạn có thể kiểm tra tốc độ tải trang trong một bản sao cục bộ của Firefox hay trong một thiết bị từ xa như Firefox OS, Firefox desktop hay Firefox cho Android hoặc thông qua Thunderbird. Xem <a href="/en-US/docs/Tools/Remote_Debugging">remote debugging</a> để học cách kết nối đến công cụ phát triển dành cho lập trình viên để thực hiện "remote debugging"</p>
-
-<hr>
-<h2 id="Giao_diện_người_dùng">Giao diện người dùng</h2>
-
-<p>Hướng dẫn sử dụng Inspector, hãy đọc bên dưới hoặc theo liên kết này <a href="/en-US/docs/Tools/Page_Inspector/UI_Tour">quick tour of UI</a></p>
-
-<h2 id="How_to">How to</h2>
-
-<p>Để tìm hiểu về Inspector, hãy đọc hướng dẫn dưới đây:</p>
-
-<div class="column-container">
-<div class="column-half">
-<dl>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Open_the_Inspector">Mở Inspector</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Examine_and_edit_HTML">Kiểm tra và sửa mã HTML</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Examine_and_edit_the_box_model">Kiểm tra và sửa box model</a></dt>
- <dd> </dd>
- <dt><a href="en-US/docs/Tools/Page_Inspector/How_to/Inspect_and_select_colors">Dò tìm và chọn màu sắc</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/View_fonts">View fonts</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Visualize_transforms">Visualize transforms</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Use_the_Inspector_API">Use the Inspector API</a></dt>
- <dd> </dd>
-</dl>
-</div>
-
-<div class="column-half">
-<dl>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Select_an_element">Select an element</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Examine_and_edit_CSS">Examine and edit CSS</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Examine_event_listeners">Examine event listeners</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Work_with_animations">Work with animations</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Edit_CSS_filters">Edit CSS filters</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/View_background_images">View background images</a></dt>
- <dd> </dd>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/How_to/Use_the_Inspector_from_the_Web_Console">Use the Inspector from the Web Console</a></dt>
- <dd> </dd>
- <dd> </dd>
-</dl>
-</div>
-</div>
-
-<hr>
-<h2 id="Reference">Reference</h2>
-
-<div class="column-container">
-<div class="column-half">
-<dl>
- <dt><a href="/en-US/docs/Tools/Page_Inspector/Keyboard_shortcuts">Keyboard shortcuts</a></dt>
- <dd> </dd>
-</dl>
-</div>
-
-<div class="column-half">
-<dl>
- <dt><a href="/en-US/docs/Tools/Tools_Toolbox#Inspector">Settings</a></dt>
- <dd> </dd>
-</dl>
-</div>
-</div>
diff --git a/files/vi/tools/remote_debugging/index.html b/files/vi/tools/remote_debugging/index.html
deleted file mode 100644
index 1593a3534b..0000000000
--- a/files/vi/tools/remote_debugging/index.html
+++ /dev/null
@@ -1,99 +0,0 @@
----
-title: 0Remote Debugging
-slug: Tools/Remote_Debugging
-translation_of: Tools/Remote_Debugging
----
-<p>You can use the Firefox developer tools on your desktop to debug code running remotely: in a different process on the same device or on a completely different device. To do this you use Firefox to attach the <a href="/en-US/docs/Toolbox" title="/en-US/docs/Toolbox">Toolbox</a> to the remote process, and the Toolbox is then launched in its own window. At the moment the following tools support remote debugging:</p>
-<ul>
- <li><a href="/en-US/docs/Tools/Page_Inspector">Page Inspector</a> (new in Firefox 26)</li>
- <li><a href="/en-US/docs/Tools/Debugger" title="/en-US/docs/Tools/Debugger">JavaScript Debugger</a></li>
- <li><a href="/en-US/docs/Tools/Style_Editor" title="/en-US/docs/Tools/Style_Editor">Style Editor</a></li>
- <li><a href="/en-US/docs/Tools/Web_Console" title="/en-US/docs/Tools/Web_Console">Web Console</a></li>
- <li><a href="/en-US/docs/Tools/Profiler" title="/en-US/docs/Tools/Profiler">Profiler</a></li>
- <li><a href="/en-US/docs/Tools/Network_Monitor" title="/en-US/docs/Tools/Network_Monitor">Network Monitor</a></li>
-</ul>
-<p>This guide explains how to get set up to debug code running in Firefox for Android over USB. The other main application for remote debugging is to debug code running in the Firefox OS Simulator, but that's covered separately, in the <a href="/en-US/docs/Tools/Firefox_OS_Simulator#Attaching_developer_tools" title="/en-US/docs/Tools/Firefox_OS_Simulator#Attaching_developer_tools">Firefox OS Simulator documentation</a>.</p>
-<p><img alt="" src="https://mdn.mozillademos.org/files/5833/remote-debugging-overview.png" style="display: block; margin-left: auto; margin-right: auto;"></p>
-<p>This guide's split into two parts: the first part, "Prerequisites" covers stuff you only need to do once, while the second part, "Connecting", covers stuff you need to do each time you connect the device. </p>
-<h2 id="Prerequisites">Prerequisites</h2>
-<p>First, you'll need:</p>
-<ul>
- <li>a desktop or laptop computer with Firefox running on it</li>
- <li>an Android device <a href="https://support.mozilla.org/en-US/kb/will-firefox-work-my-mobile-device" title="https://support.mozilla.org/en-US/kb/will-firefox-work-my-mobile-device">capable of running Firefox for Android</a> with Firefox for Android running on it</li>
- <li>a USB cable to connect the two devices</li>
-</ul>
-<h3 id="ADB_setup">ADB setup</h3>
-<p>Next, you'll need to get the desktop and the Android device talking to each other using the <a href="https://developer.android.com/tools/help/adb.html" title="https://developer.android.com/tools/help/adb.html">adb</a> command-line tool.</p>
-<h4 class="note" id="On_the_Android_device"><strong>On the Android device</strong></h4>
-<ul>
- <li><a href="http://developer.android.com/guide/developing/device.html#setting-up" title="http://developer.android.com/guide/developing/device.html#setting-up">Enable USB debugging (step 2 of this link only)</a>.</li>
- <li>Attach the device to the desktop via USB.</li>
-</ul>
-<h4 class="note" id="On_the_desktop"><strong>On the desktop</strong></h4>
-<ul>
- <li>Install the correct version of the <a href="http://developer.android.com/sdk/index.html" title="http://developer.android.com/sdk/index.html">Android SDK</a> for your device.</li>
- <li>Using the Android SDK, install the <a href="http://developer.android.com/sdk/installing.html#components" title="http://developer.android.com/sdk/installing.html#components">Android Platform Tools</a>.</li>
- <li>Android Platform Tools installs adb in the "platform-tools" directory under the directory in which you installed the Android SDK. Make sure the "platform-tools" directory is in your path.</li>
-</ul>
-<p>To check it worked, open up a command shell on the desktop and type:</p>
-<pre>adb devices</pre>
-<p>You should see some output like:</p>
-<pre>List of devices attached
-51800F220F01564 device
-</pre>
-<p>(The long hex string will be different.)</p>
-<p>If you do, then <code>adb</code> has found your device and you've successfully set up ADB.</p>
-<h3 id="Enable_remote_debugging">Enable remote debugging</h3>
-<p>Next, you need to enable remote debugging on both the Android device and the desktop.</p>
-<h4 id="Firefox_for_Android_24_and_earlier">Firefox for Android 24 and earlier</h4>
-<p>To enable remote debugging on the device, you need to set the <code>devtools.debugger.remote-enabled</code> preference to <code>true</code>.</p>
-<p>Go to <code>about:config</code> in Firefox for Android, type "devtools" into the search box and press the Search key. You'll see all the devtools preferences. Find the <code>devtools.debugger.remote-enabled</code> preference, and press "Toggle".</p>
-<p><img alt="" src="https://mdn.mozillademos.org/files/5803/remote-debugger-about-config-toggle.png" style="display: block; margin-left: auto; margin-right: auto;"></p>
-<h4 class="note" id="Firefox_for_Android_25_and_later">Firefox for Android 25 and later</h4>
-<p>On Firefox for Android 25 and later, there's a menu item to enable remote debugging. Open the menu, select "Settings", then "Developer tools" (on some Android devices you may need to select "More" to see the "Settings" option). Check the "Remote debugging" box:</p>
-<p><img alt="" src="https://mdn.mozillademos.org/files/5829/remote-debugging-device-enable.png" style="display: block; margin-left: auto; margin-right: auto;"></p>
-<p>The browser will display a notification reminding you to set up port forwarding, which we'll do later on.</p>
-<h4 id="On_the_desktop_2"><strong>On the desktop</strong></h4>
-<p>On the desktop, remote debugging is enabled by a setting in the Toolbox. <a href="/en-US/docs/Tools_Toolbox" title="/en-US/docs/Tools_Toolbox">Open the Toolbox</a>, click the "Settings" button in the <a href="/en-US/docs/Tools_Toolbox#Toolbar" title="/en-US/docs/Tools_Toolbox#Toolbar">toolbar</a>, and check "Enable remote debugging" in the <a href="/en-US/docs/Tools_Toolbox#Settings" title="/en-US/docs/Tools_Toolbox#Settings">Settings </a>tab:</p>
-<p><img alt="" src="https://mdn.mozillademos.org/files/5827/remote-debugger-toolbox-settings.png" style="display: block; margin-left: auto; margin-right: auto;"></p>
-
-<div class="geckoVersionNote">
- <p>If you're using a version of Firefox older than 27, you'll need to restart the browser for the setting to take effect.</p>
-</div>
-<p>You'll then see a new option in the Web Developer menu labeled "Connect...":</p>
-<p><img alt="" src="https://mdn.mozillademos.org/files/5811/remote-debugging-connect-menuitem.png" style="display: block; margin-left: auto; margin-right: auto;"></p>
-<h2 id="Connecting">Connecting</h2>
-<p>Now you can connect the remote debugging tools to the device. First, attach the device to the desktop with a USB cable, if you haven't already.</p>
-<div style="margin-left: 25%; padding: 1em; border: solid rgb(245, 242, 240) 3px; margin-bottom: 2em;">
- <div class="note">
- <strong>On the desktop</strong></div>
- <p>Go to a command prompt, and type:</p>
- <pre>adb forward tcp:6000 tcp:6000</pre>
- <p>(If you've changed the value the Android device uses for a debugging port, you'll need to adjust this accordingly.)</p>
- <p>For Firefox OS, type:</p>
- <pre>adb forward tcp:6000 localfilesystem:/data/local/debugger-socket</pre>
- <p>You'll need to reissue this command each time you physically attach desktop and device with the USB cable.</p>
- <p>Then go to the Web Developer menu on Firefox, and select "Connect...". You'll see a page that looks like this:</p>
- <p><img alt="" src="https://mdn.mozillademos.org/files/5813/remote-debugging-desktop-connect.png" style="display: block; margin-left: auto; margin-right: auto;">Unless you've changed the port numbers, choose 6000 and press the "Connect" button.</p>
-</div>
-<div style="margin-right: 25%; padding: 1em; border: solid rgb(245, 242, 240) 3px; margin-bottom: 2em;">
- <div class="note">
- <strong>On the Android device</strong></div>
- <p>Next you'll see a dialog on the Android device asking you to confirm the connection:</p>
- <p><img alt="" src="https://mdn.mozillademos.org/files/5815/remote-debugging-device-connect.png" style="display: block; margin-left: auto; margin-right: auto;">Press "OK". The desktop waits for a few seconds to give you time to acknowledge this dialog: if it times out, just press "Connect" in the desktop dialog again.</p>
-</div>
-<div style="margin-left: 25%; padding: 1em; border: solid rgb(245, 242, 240) 3px; margin-bottom: 2em;">
- <div class="note">
- <strong>On the desktop</strong></div>
- <p>Next, the desktop shows you a dialog that looks something like this:</p>
- <p><img alt="" src="https://mdn.mozillademos.org/files/5819/remote-debugging-desktop-select-target.png" style="display: block; margin-left: auto; margin-right: auto;">This is asking whether you want to debug web content running in a browser tab, or to debug the browser code itself.</p>
- <ul>
- <li>You'll see one entry under "Available remote tabs" for each open tab, and clicking it will attach the debugging tools to the web content hosted by that tab. If you want to debug your web content, you'll choose the relevant content tab.</li>
- <li>You'll see one entry under "Available remote processes": this is the browser process itself. You'll choose this option if you want to debug the browser's own code.</li>
- </ul>
- <p>Let's choose to attach to the mozilla.org website. The Toolbox will open in its own window, attached to the Firefox for Android tab that's currently hosting mozilla.org:</p>
- <p><img alt="" src="https://mdn.mozillademos.org/files/5821/remote-debugging-console.png" style="display: block; margin-left: auto; margin-right: auto;"></p>
- <p>The Toolbox, and the tools it hosts, work in just the same way as they do when attached to local content.<img alt="" src="https://mdn.mozillademos.org/files/5823/remote-debugging-debugger.png" style="display: block; margin-left: auto; margin-right: auto;"></p>
-</div>
-<p> </p>
-<p> </p>