ContributeHey, you! Want to contribute to Jetpack?Yeah, you: did you k การแปล - ContributeHey, you! Want to contribute to Jetpack?Yeah, you: did you k ไทย วิธีการพูด

ContributeHey, you! Want to contrib

Contribute

Hey, you! Want to contribute to Jetpack?

Yeah, you: did you know that you could be instrumental in making Jetpack more robust and secure? If you use and love Jetpack, why not contribute to the project?

(If you don’t use and love Jetpack, what are you waiting for? Download it now!)

Like WordPress itself, Jetpack is open-source. You can test planned improvements, check out the code, file and view bug reports, and even submit your own patches. The community’s contributions are what make WordPress and Jetpack so strong.

By contributing to Jetpack, you improve the functionality of millions of sites while gaining hands-on development experience. Best of all, developers of all levels can help — whether you can barely recognize a filter (or don’t know what that means) or you’ve already authored your own plugins, there are ways for you to pitch in. Blast off:

Beginner, intermediate, and advanced contribution options.
How to check out the source code.
How to create a great bug report.
How to write and submit a patch.
Best practices for WordPress development.
Contributing for Everyone!

Backyard Rockets: Jetpack Newbies

Just getting to know what Jetpack is? Welcome!

First, install Jetpack on a test site and poke around — enable some modules, and try your hand at customizing them. (Need a place to start? Give the mobile theme a try, or move your sharing buttons.)

Next, how about signing for beta testing? Beta testers give updates, fixes, and new modules a test run before they’re publicly released, so they’re an important part of the development process. If you’re interested in joining the beta group, fill out this form to let us know.

Once you have a handle on how Jetpack works, why not take a look at GitHub, the tool we use to track bugs? You’ll be ready to start submitting bug reports in no time.

Long-Range Flight: Intermediate Coders

If you’re comfortable reading and editing code but aren’t yet writing your own from scratch, help the bug zappers by submitting bug reports. If you’ve never submitted a bug report before, check out Creating a Great Bug Report to make sure your reports have all the info a developer needs to resolve the issue quickly and effectively.

If you’re going to be submitting reports, you’ll also want to get familiar with GitHub. Once you get comfortable reporting, start looking around the code and get ready to take the next step — submitting patches.

Intergalactic Travel: Advanced Developers

Do you write your own code? Maybe you’ve written your own plugin, or have put on sunglasses to peer directly into the core of WordPress. Are you comfortable reading other people’s code and suggesting improvements?

If this is you, jump into the fray and start creating and submitting patches. Take a look at these outstanding issues to get an idea of the types of things the community has identified as needing attention.

The Nuts and Bolts of Contributing

Joining the Beta Group

Our beta group is a group of smart people (a select group of WordPress users and developers) who tell us what we’re doing wrong (and right) in the next version of Jetpack. Your mission as a beta tester is to help us test the next version of Jetpack and let us know about your experience. Is the UI confusing? Is a module not working properly?

Contact us to let us know if you’re interested in helping out. To participate, you’ll need to download and install the Jetpack Beta Tester plugin, and be sure you’re running the latest version of WordPress. (Note: you won’t be able to access the Beta Tester plugin until you’ve been added to the group.)

Checking Out the Source Code

Most software projects, including WordPress, use a version-control system to keep track of source code and revisions. Jetpack is available on GitHub. Here are the basics of downloading Jetpack using Git.

(If you’re not familiar with Git and GitHub, the GitHub Guides videos are a great place to start.)

Installing Git

The easiest way to get Git is to download a binary package for your operating system from Git’s website – there are packages for most major operating systems, including Mac OSX, Windows, several versions of Linux, and more.

For more, check out the documentation on Git’s website.

Creating a GitHub account, and generating SSH keys

Jetpack’s code is hosted on GitHub.com. Although you can browse the plugin code, and even download it without creating an account, you will need to sign-up if you want to contribute by reporting bugs or proposing patches.

Once you’ve signed up, we recommend that you generate SSH keys to establish a secure connection between your computer and GitHub. This will allow you to pull code from GitHub, and push patches without having to enter your password every single time. You can follow this guide to add SSH keys to your computer and to your GitHub account.

Navigating the Jetpack Git repository

The source code and revisions are kept in a repository. You connect to the repository using either the command line interface (CLI) or with a client program, which lets you check out, view, edit, and patch the source code.

The Jetpack repository is available here, and has four important sections:

Master: The latest development code.
Releases: Codes that let you know what version of Jetpack you’re looking at (e.g., 2.3.1). All publicly-released versions of Jetpack have a tag.
Branches: Previous Jetpack releases. Sometimes when there are major new Jetpack releases, we maintain the previous release with bug fixes (usually limited to major bugs and security issues).
Issues: Bugs, Feature requests, remarks, suggestions, patches… They’re all in there!
Checking Out the Code

Once you install Git, you’ll need to check out the code before you can work on it — that is, you’ll download the code from a remote location (repository) to your computer. Here’s how:

Navigate to Jetpack’s GitHub page, and hit the “Fork” button:
Fork
When doing so, you make a copy of the current development version of Jetpack to your own GitHub account.

On your computer, open your terminal and navigate to the directory where you want Jetpack to be located.
Execute the clone command. For instance, to check out the copy of the Jetpack repository you’ve just created on GitHub:
git clone git@github.com:YOUR_GITHUB_USERNAME/jetpack.git jetpack
Navigate to the jetpack directory: cd jetpack
Add the original Jetpack repository as a new remote: it will allow you to pull changes we make to the original repository, thus keeping your local copy up to date.
git remote add upstream git@github.com:Automattic/jetpack.git
If it’s been a while since you created that fork, you’ll want to make sure you’re using Jetpack’s latest development version, use the fetch and merge commands to apply the latest Jetpack changes to your local repository, without losing any of your local changes.

1
2
3
4
5
git fetch upstream

git checkout master

git merge upstream/master
Creating a Great Bug Report

The Issues tab is a ticket database used to track projects and bugs — we use it to manage new features, bug reports, and general project tasks. It’s designed to make it as simple as possible for people to report bugs and submit patches to the code.

Three Steps to Being a GitHub Star

1. Make sure the bug is really a bug.

Before you report a bug, make sure it’s not just internet gremlins or a compatibility problem. Before you begin your investigation, make sure you’re running the latest versions of WordPress and Jetpack.

Start by turning off all your other plugins and switching to the default TwentyThirteen or TwentyFourteen themes. Do you still see the issue? If so, you might have found a bug.

If the issue disappears, it was probably caused by a conflict with one of your plugins or themes. Now, test them one at a time — activate only Jetpack and that theme or plugin to eliminate other variables. When the issue reappears, you’ve found the culprit!

2. See if it’s already been reported.

To check if a bug has already been reported, you can:

Check out the Known Issues page.
Look through the current list of Opened Issues.
Browse the Jetpack Support Forums.
Not mentioned in any of those places? Not caused by a conflict with another plugin or theme? By George, you’ve found a bug! Time to report it.

3. Submit a detailed, precise bug report.

The more specific your ticket is, the easier it will be for someone to zap the bug. Log in to GitHub, open a new issue, and be sure to fill out all the relevant details: a concise summary and a clear description are key. If it’s been mentioned by someone else, like on the Jetpack Support Forums, include a link.

Here’s a sample of what a helpful summary looks like:

Summary of the issue: The Jetpack Image widget won’t display the selected image.

Steps to reproduce:

Activate the Extra Sidebar Widgets module
Include the Jetpack Image widget in the sidebar, and fill out all the fields, including the image URL
Save the Widget and view your site
Expected behavior or result: The sidebar should display the selected image

Actual behavior or result: An error appears: “Image could not be found.”

Link to Example (if applicable): http://example.com/image-widget/

Screenshots: screenshot of error message goes here

Cross-Browser Testing, AKA “Don’t Forget About Internet Explorer 8″

If you believe you’ve come across a bug and you’ve worked through all the steps detailed above, it’s worth checking to see if the issue can be reproduced in different browsers. You can find download links to the most recent versions of all the major browsers on Browse Happy.

You should also check to see if the potential bug is limited to one browser; this is especially important for any bugs that may be Javascript or jQuery-related, as some browsers are more likely to experience those issues than others.

Contribute and comment on existing issues

In addition to reporting bugs and submitting patches, you can
0/5000
จาก: -
เป็น: -
ผลลัพธ์ (ไทย) 1: [สำเนา]
คัดลอก!
สนับสนุน

Hey คุณ ต้องใช้ Jetpack ?

ใช่ คุณ: คุณรู้ว่า คุณอาจจะบรรเลงใน Jetpack แข็งแกร่งมากขึ้น และปลอดภัย ถ้าคุณใช้ และรัก Jetpack ทำไมไม่นำไปสู่โครงการ?

(ถ้าคุณไม่ใช้รัก Jetpack สิ่งคุณรอ ดาวน์โหลดเดี๋ยวนี้)

เช่น WordPress เอง Jetpack คือเปิดมา คุณสามารถทดสอบการปรับปรุงแผน เช็ครหัส แฟ้มและดูข้อบกพร่องรายงาน คลิ กแม้ว่าซอฟต์แวร์ของคุณเอง ผลงานของชุมชนเป็นสิ่งที่ทำให้ WordPress และ Jetpack แข็งแรง

โดยสนับสนุน Jetpack คุณเพิ่มฟังก์ชันของล้านของอเมริกาในขณะที่ได้รับประสบการณ์ในการพัฒนาอีกด้วย ส่วนของทั้งหมด สามารถช่วยนักพัฒนาทุกระดับซึ่งว่าที่คุณแทบไม่สามารถรู้จักตัว (หรือไม่รู้ว่า) หรือคุณได้แล้วเขียนสคริปท์ของคุณเอง มีวิธีให้คุณโยนในได้ ระเบิดปิด:

เริ่มต้น ส่วนกลาง และขั้นสูงตัวเลือกการ
วิธีการตรวจสอบรหัสแหล่งที่มาการ
วิธีการสร้างรายงานข้อผิดพลาดมาก
วิธีการเขียน และส่งแพทช์
สุดแนวทางสำหรับการพัฒนา WordPress
สนับสนุนทุกคน!

บ้านจรวด: มือใหม่ Jetpack

เพียงแค่รับรู้ว่า Jetpack คืออะไร ยินดีต้อนรับ!

ครั้งแรก การติดตั้ง Jetpack บนไซต์ทดสอบ และจิ้ม — เปิดบางโมดูล และลองมือของคุณที่กำหนดเหล่านั้น (ต้องการที่จะเริ่มต้น ให้ลองธีมมือถือ หรือย้ายปุ่มการใช้งานร่วมกัน)

, วิธีการเกี่ยวกับการรับรองสำหรับทดสอบรุ่นเบต้า ทดสอบเบต้าให้ปรับปรุง แก้ไข และการทดสอบเรียกใช้ก่อนที่พวกเขากำลังเผยออก เพื่อให้เป็นส่วนสำคัญของการพัฒนาโมดูลใหม่ ถ้าคุณสนใจในการเข้าร่วมกลุ่มเบต้า กรอกแบบฟอร์มนี้เพื่อแจ้งให้เราทราบ

เมื่อคุณจัดการกับ Jetpack ทำงานอย่างไร ทำไมจะไม่ได้ดูที่ GitHub เครื่องมือเราใช้เพื่อติดตามโรคจิต คุณจะพร้อมที่จะเริ่มการส่งรายงานข้อผิดพลาดในเวลาไม่

บินช่วงยาว: เหล่ากลาง

ถ้าคุณกำลังอ่าน และแก้ไขโค้ด แต่ยังไม่ได้เขียนเองจากรอยขีดข่วน ช่วย zappers ข้อผิดพลาด โดยการส่งรายงานข้อผิดพลาด ถ้าคุณไม่ได้ส่งรายงานข้อผิดพลาดก่อน เช็คสร้างดีบักรายงานเพื่อให้แน่ใจว่า รายงานของคุณมีข้อมูลทั้งหมดนักพัฒนาจำเป็นต้องแก้ไขปัญหาอย่างรวดเร็ว และมีประสิทธิภาพด้วย

ถ้าคุณกำลังจะส่งรายงาน คุณจะต้องคุ้นเคยกับ GitHub เมื่อคุณได้รับความสะดวกสบาย รายงาน เริ่มดูรอบ ๆ รหัส และเตรียมการใช้ขั้นตอนต่อไปคือส่งแพทช์

เดินทางอวกาศ: ขั้นสูงพัฒนา

คุณเขียนรหัสของคุณเอง บางทีคุณได้เขียนปลั๊กอินของคุณเอง หรือมีใส่แว่นกันแดดให้เพื่อนลงหลักของ WordPress จะอ่านรหัสของคนอื่นและแนะนำการปรับปรุง?

ถ้าเป็น คุณกระโดดเข้าสู่การต่อสู้ และเริ่มต้นสร้าง และส่งการปรับปรุง ดูที่ปัญหาเหล่านี้โดดเด่นจะได้รับความคิดของชนิดของสิ่งที่ชุมชนได้ระบุว่าเป็นจำเป็นต้องให้ความสนใจการใช้

ถั่วและกรูของสนับสนุน

เข้าร่วม กลุ่มเบต้า

กลุ่มเบต้าของเราคือ กลุ่มคนสมาร์ท (เลือกกลุ่มผู้ใช้เวิร์ดเพรสและนักพัฒนา) ที่บอกเราว่าเรากำลังทำผิด (และขวา) ในเวอร์ชันถัดไปของ Jetpack การ ภารกิจของคุณเป็นเบต้า ทดสอบจะช่วยให้เราทดสอบ Jetpack รุ่น และแจ้งให้เราทราบเกี่ยวกับประสบการณ์ของคุณ UI อย่างไร เป็นการทำงานไม่ถูกต้อง?

ติดต่อเราเพื่อให้เราทราบหากคุณกำลังสนใจในการช่วยออก การเข้าร่วม คุณจะต้องดาวน์โหลด และติดตั้งปลั๊กอิน Jetpack Beta Tester และให้แน่ใจว่า คุณกำลังเรียกใช้รุ่นล่าสุดของ WordPress (หมายเหตุ: คุณจะไม่สามารถเข้าใช้งานปลั๊กอิน Beta Tester จนกระทั่งคุณได้ถูกเพิ่มไปยังกลุ่ม)

ตรวจสอบออกรหัสแหล่งที่มา

โครงการซอฟต์แวร์ส่วนใหญ่ WordPress รวมทั้งใช้ระบบควบคุมเวอร์ชันการติดตามรหัสแหล่งที่มาและการปรับปรุง มี jetpack บน GitHub นี่คือพื้นฐานของการดาวน์โหลด Jetpack โดยใช้ Git.

(If you're not familiar with Git and GitHub, วิดีโอแนะนำ GitHub จะเหมาะสำหรับการเริ่มต้น)

ติดตั้ง Git

วิธีที่ง่ายที่สุดรับ Git คือการ ดาวน์โหลดแพคเกจไบนารีสำหรับระบบปฏิบัติการจากเว็บไซต์ของ Git – มีแพคเกจสำหรับระบบปฏิบัติการ Mac OSX, Windows, Linux หลายรุ่น และเพิ่มเติมรายใหญ่ที่สุด

สำหรับข้อมูลเพิ่มเติม ตรวจสอบเอกสารในเว็บไซต์ของ Git

สร้างบัญชี GitHub และสร้างคีย์ SSH

รหัส Jetpack ของโฮสต์บน GitHub.com แม้ว่าคุณสามารถเรียกดูรหัสปลั๊กอิน และดาวน์โหลดได้โดยไม่ต้องสร้างบัญชีผู้ใช้ คุณจะต้องลงทะเบียนถ้าคุณต้องการมีส่วนร่วม ด้วยการรายงานข้อผิดพลาด หรือเสนอปรับปรุงการ

เมื่อคุณได้ลงทะเบียนไว้ เราขอแนะนำให้ คุณสร้างคีย์ SSH เพื่อสร้างทางเชื่อมต่อระหว่างคอมพิวเตอร์และ GitHub นี้จะช่วยให้คุณสามารถดึงรหัสจาก GitHub และผลักดันซอฟต์แวร์ โดยไม่ต้องป้อนรหัสผ่านทุกครั้งเดียว คุณสามารถทำตามคำแนะนำนี้เพิ่มคีย์ SSH เพื่อคอมพิวเตอร์ และบัญชี GitHub คุณได้

ไปเก็บ Jetpack Git

รหัสแหล่งที่มาและการปรับปรุงจะถูกเก็บไว้ในคลังได้ คุณเชื่อมต่อกับเก็บที่ใช้อินเทอร์เฟซบรรทัดคำสั่ง (CLI) หรือโปรแกรมไคลเอนต์ ซึ่งช่วยให้คุณเช็ค ดู แก้ไข และแก้ไขรหัสแหล่งที่มา

Jetpack เก็บได้ที่นี่ และมีส่วนสำคัญ 4:

หลัก: ล่าสุดพัฒนารหัส.
รุ่น: รหัสที่ช่วยให้คุณทราบ Jetpack รุ่นใดที่คุณกำลังมองหาที่ (เช่น 2.3.1) เวอร์ชันทั้งหมดที่นำออกใช้ทั่วไปของ Jetpack ได้เป็นแท็ก
สาขา: Jetpack ก่อนหน้านี้ออก บางครั้งเมื่อมี Jetpack รุ่นใหม่ใหญ่ เรารักษารุ่นก่อนหน้านี้ มีการแก้ไขข้อผิดพลาดที่มักจะจำกัดข้อผิดพลาดที่สำคัญและปัญหาด้านความปลอดภัย) .
ปัญหา: โรคจิต เตือน หมายเหตุ ข้อเสนอแนะ ปรับปรุง... พวกเขากำลังทั้งหมดในนั่น!
ออกใช้รหัสตรวจสอบ

เมื่อคุณติดตั้ง Git คุณจะต้องตรวจสอบรหัสก่อนคุณสามารถทำงานบน — นั่นคือ คุณจะดาวน์โหลดรหัสจากที่ตั้งระยะไกล (เก็บ) กับคอมพิวเตอร์ของคุณ นี่คือวิธี:

นำของ Jetpack GitHub หน้า และปุ่มกด "ส้อม":
ส้อม
เมื่อทำเช่นนั้น คุณทำสำเนาของรุ่นพัฒนาปัจจุบัน Jetpack การบัญชี GitHub คุณ

คอมพิวเตอร์ เปิดเทอร์มินัลของคุณ และไปยังไดเรกทอรีที่คุณ Jetpack เป็น.
ดำเนินการคำสั่งโคลน ตัวอย่าง การตรวจสอบสำเนาเก็บ Jetpack คุณได้สร้างใน GitHub:
git โคลน git@github.com:YOUR_GITHUB_USERNAME/jetpack.git jetpack
นำในไดเรกทอรี jetpack: ซีดี jetpack
เพิ่มเก็บ Jetpack เดิมเป็นรีโมทใหม่: มันจะช่วยให้คุณสามารถดึงเราให้เก็บต้นฉบับ จึง รักษาสำเนาของคุณได้ถึงวันเปลี่ยนแปลง
git รีโมทเพิ่มขั้นต้นน้ำ git@github.com:Automattic/jetpack.git
If จะได้รับในขณะที่ตั้งแต่คุณสร้างส้อมนั้น คุณจะต้องแน่ใจว่าคุณกำลังใช้ Jetpack ของรุ่นล่าสุดพัฒนา ใช้คำสั่งที่นำมาใช้และเวียนใช้ Jetpack ล่าสุดเปลี่ยนเก็บของท้องถิ่น, โดยไม่สูญเสียใด ๆ ของคุณภายในเปลี่ยนแปลง

1
2
3
4
5
git นำต้นน้ำ

หลักเช็คเอาท์ git

git ผสานหลักขั้นต้นน้ำ /
สร้างรายงานข้อผิดพลาดมาก

บัตรฐานข้อมูลใช้ในการติดตามโครงการและข้อบกพร่องเป็นปัญหากแท็บ — เราใช้จัดการคุณลักษณะใหม่ รายงานข้อบกพร่อง และงานโครงการทั่วไป ได้ออกแบบมาให้ง่ายที่สุดสำหรับผู้ที่รายงานข้อผิดพลาด และปรับปรุงรหัสการส่ง

ตอนที่สามเป็น ดาว GitHub

1 แน่ใจบักได้จริง ๆ มีปัญหา

ก่อนคุณรายงานบกพร่อง ให้แน่ใจว่า ไม่ใช่เพียง internet gremlins หรือปัญหาความเข้ากัน ก่อนที่จะเริ่มการตรวจสอบ ให้แน่ใจว่า คุณกำลังเรียกใช้รุ่นล่าสุดของ WordPress และ Jetpack การ

เริ่มต้น ด้วยการปิดทั้งหมดของคุณอื่นปลั๊กอิน และสลับไปยังค่าเริ่มต้น TwentyThirteen หรือ TwentyFourteen ชุดรูปแบบ คุณยังเห็นปัญหาหรือไม่ ถ้าดังนั้น คุณอาจพบความบกพร่อง

ถ้าปัญหาหาย นั้นอาจเกิดขึ้นจากความขัดแย้งของปลั๊กอินหรือชุดรูปแบบของคุณ ตอนนี้ ทดสอบพวกเขาหนึ่งครั้ง — เปิดใช้งานเฉพาะ Jetpack และที่ชุดรูปแบบ หรือปลั๊กอินเพื่อกำจัดตัวแปรอื่น ๆ เมื่อปัญหา reappears คุณได้พบผู้ร้าย!

2 ดูถ้ามันเป็นรายงาน

ถ้าบกพร่องมีการรายงาน คุณสามารถตรวจสอบ:

เช็คหน้าทราบปัญหาจะ
ดูรายการปัจจุบันของเปิดประเด็น
ดูฟอรั่มสนับสนุน Jetpack การ
ดังกล่าวในสถานเหล่านั้น ไม่เกิดจากความขัดแย้งกับปลั๊กอินหรือชุดรูปแบบอื่นหรือไม่ โดยจอร์จ คุณได้พบบกพร่อง เวลารายงานมัน

3 ส่งรายงานข้อผิดพลาดโดยละเอียด แม่นยำ

มากไหนมี ง่ายขึ้นมันจะเป็นคนนปะทะข้อผิดพลาด สู่ใน GitHub เปิดประเด็นใหม่ และได้กรอกรายละเอียดที่เกี่ยวข้อง: สรุปกระชับและคำอธิบายชัดเจนเป็นคีย์ ถ้ามันเป็นการกล่าวถึง โดยบุคคลอื่น เช่นฟอรั่มสนับสนุน Jetpack รวมลิงค์

นี่คือตัวอย่างของการสรุปประโยชน์ที่ดูเหมือน:

สรุปปัญหา: Jetpack รูปเครื่องมือจะแสดงการเลือกรูปภาพ

ขั้นตอนการทำ:

เรียกใช้โมดูลเครื่องมือ Sidebar เสริม
รวมเครื่องมือ Jetpack รูปแถบด้านข้าง และกรอกฟิลด์ทั้งหมด รวมถึง URL รูป
Widget บันทึก และดูไซต์ของคุณ
คาดว่าลักษณะการทำงานหรือผล: แถบด้านข้างควรแสดงภาพเลือก

จริงพฤติกรรมหรือผลลัพธ์: ปรากฏข้อผิดพลาด: "ภาพไม่พบ"

เชื่อมโยงตัวอย่าง (ถ้ามี): http://example.com/image-widget/

หน้าจอ: หน้าจอข้อผิดพลาดที่นี่

ข้ามเบราว์เซอร์ทดสอบ อา "อย่าลืมเกี่ยวกับ Internet Explorer 8″

ถ้าคุณเชื่อว่า คุณเคยเจอปัญหา และคุณทำขั้นตอนทุกรายละเอียดข้างต้น มันมีมูลค่าการตรวจสอบเพื่อดูถ้าปัญหาสามารถทำซ้ำในแต่ละเบราว์เซอร์ คุณสามารถค้นหาลิงค์ดาวน์โหลดให้เป็นรุ่นล่าสุดของเบราว์เซอร์หลักทั้งหมดบนดูแฮปปี้

คุณควรตรวจสอบเพื่อดูว่า ปัญหาอาจจำกัดการเบราว์เซอร์หนึ่ง นี้เป็นโดยเฉพาะอย่างยิ่งความสำคัญสำหรับข้อผิดพลาดใด ๆ ที่อาจเป็น Javascript หรือ jQuery สัมพันธ์ เบราว์เซอร์บางตัวมีแนวโน้มประสบปัญหาเหล่านั้นมากกว่าคนอื่นด้วย

Contribute และข้อคิดเห็นในประเด็นที่มีอยู่

รายงานข้อบกพร่อง และส่งการปรับปรุง คุณสามารถ
การแปล กรุณารอสักครู่..
ผลลัพธ์ (ไทย) 2:[สำเนา]
คัดลอก!
Contribute

Hey, you! Want to contribute to Jetpack?

Yeah, you: did you know that you could be instrumental in making Jetpack more robust and secure? If you use and love Jetpack, why not contribute to the project?

(If you don’t use and love Jetpack, what are you waiting for? Download it now!)

Like WordPress itself, Jetpack is open-source. You can test planned improvements, check out the code, file and view bug reports, and even submit your own patches. The community’s contributions are what make WordPress and Jetpack so strong.

By contributing to Jetpack, you improve the functionality of millions of sites while gaining hands-on development experience. Best of all, developers of all levels can help — whether you can barely recognize a filter (or don’t know what that means) or you’ve already authored your own plugins, there are ways for you to pitch in. Blast off:

Beginner, intermediate, and advanced contribution options.
How to check out the source code.
How to create a great bug report.
How to write and submit a patch.
Best practices for WordPress development.
Contributing for Everyone!

Backyard Rockets: Jetpack Newbies

Just getting to know what Jetpack is? Welcome!

First, install Jetpack on a test site and poke around — enable some modules, and try your hand at customizing them. (Need a place to start? Give the mobile theme a try, or move your sharing buttons.)

Next, how about signing for beta testing? Beta testers give updates, fixes, and new modules a test run before they’re publicly released, so they’re an important part of the development process. If you’re interested in joining the beta group, fill out this form to let us know.

Once you have a handle on how Jetpack works, why not take a look at GitHub, the tool we use to track bugs? You’ll be ready to start submitting bug reports in no time.

Long-Range Flight: Intermediate Coders

If you’re comfortable reading and editing code but aren’t yet writing your own from scratch, help the bug zappers by submitting bug reports. If you’ve never submitted a bug report before, check out Creating a Great Bug Report to make sure your reports have all the info a developer needs to resolve the issue quickly and effectively.

If you’re going to be submitting reports, you’ll also want to get familiar with GitHub. Once you get comfortable reporting, start looking around the code and get ready to take the next step — submitting patches.

Intergalactic Travel: Advanced Developers

Do you write your own code? Maybe you’ve written your own plugin, or have put on sunglasses to peer directly into the core of WordPress. Are you comfortable reading other people’s code and suggesting improvements?

If this is you, jump into the fray and start creating and submitting patches. Take a look at these outstanding issues to get an idea of the types of things the community has identified as needing attention.

The Nuts and Bolts of Contributing

Joining the Beta Group

Our beta group is a group of smart people (a select group of WordPress users and developers) who tell us what we’re doing wrong (and right) in the next version of Jetpack. Your mission as a beta tester is to help us test the next version of Jetpack and let us know about your experience. Is the UI confusing? Is a module not working properly?

Contact us to let us know if you’re interested in helping out. To participate, you’ll need to download and install the Jetpack Beta Tester plugin, and be sure you’re running the latest version of WordPress. (Note: you won’t be able to access the Beta Tester plugin until you’ve been added to the group.)

Checking Out the Source Code

Most software projects, including WordPress, use a version-control system to keep track of source code and revisions. Jetpack is available on GitHub. Here are the basics of downloading Jetpack using Git.

(If you’re not familiar with Git and GitHub, the GitHub Guides videos are a great place to start.)

Installing Git

The easiest way to get Git is to download a binary package for your operating system from Git’s website – there are packages for most major operating systems, including Mac OSX, Windows, several versions of Linux, and more.

For more, check out the documentation on Git’s website.

Creating a GitHub account, and generating SSH keys

Jetpack’s code is hosted on GitHub.com. Although you can browse the plugin code, and even download it without creating an account, you will need to sign-up if you want to contribute by reporting bugs or proposing patches.

Once you’ve signed up, we recommend that you generate SSH keys to establish a secure connection between your computer and GitHub. This will allow you to pull code from GitHub, and push patches without having to enter your password every single time. You can follow this guide to add SSH keys to your computer and to your GitHub account.

Navigating the Jetpack Git repository

The source code and revisions are kept in a repository. You connect to the repository using either the command line interface (CLI) or with a client program, which lets you check out, view, edit, and patch the source code.

The Jetpack repository is available here, and has four important sections:

Master: The latest development code.
Releases: Codes that let you know what version of Jetpack you’re looking at (e.g., 2.3.1). All publicly-released versions of Jetpack have a tag.
Branches: Previous Jetpack releases. Sometimes when there are major new Jetpack releases, we maintain the previous release with bug fixes (usually limited to major bugs and security issues).
Issues: Bugs, Feature requests, remarks, suggestions, patches… They’re all in there!
Checking Out the Code

Once you install Git, you’ll need to check out the code before you can work on it — that is, you’ll download the code from a remote location (repository) to your computer. Here’s how:

Navigate to Jetpack’s GitHub page, and hit the “Fork” button:
Fork
When doing so, you make a copy of the current development version of Jetpack to your own GitHub account.

On your computer, open your terminal and navigate to the directory where you want Jetpack to be located.
Execute the clone command. For instance, to check out the copy of the Jetpack repository you’ve just created on GitHub:
git clone git@github.com:YOUR_GITHUB_USERNAME/jetpack.git jetpack
Navigate to the jetpack directory: cd jetpack
Add the original Jetpack repository as a new remote: it will allow you to pull changes we make to the original repository, thus keeping your local copy up to date.
git remote add upstream git@github.com:Automattic/jetpack.git
If it’s been a while since you created that fork, you’ll want to make sure you’re using Jetpack’s latest development version, use the fetch and merge commands to apply the latest Jetpack changes to your local repository, without losing any of your local changes.

1
2
3
4
5
git fetch upstream

git checkout master

git merge upstream/master
Creating a Great Bug Report

The Issues tab is a ticket database used to track projects and bugs — we use it to manage new features, bug reports, and general project tasks. It’s designed to make it as simple as possible for people to report bugs and submit patches to the code.

Three Steps to Being a GitHub Star

1. Make sure the bug is really a bug.

Before you report a bug, make sure it’s not just internet gremlins or a compatibility problem. Before you begin your investigation, make sure you’re running the latest versions of WordPress and Jetpack.

Start by turning off all your other plugins and switching to the default TwentyThirteen or TwentyFourteen themes. Do you still see the issue? If so, you might have found a bug.

If the issue disappears, it was probably caused by a conflict with one of your plugins or themes. Now, test them one at a time — activate only Jetpack and that theme or plugin to eliminate other variables. When the issue reappears, you’ve found the culprit!

2. See if it’s already been reported.

To check if a bug has already been reported, you can:

Check out the Known Issues page.
Look through the current list of Opened Issues.
Browse the Jetpack Support Forums.
Not mentioned in any of those places? Not caused by a conflict with another plugin or theme? By George, you’ve found a bug! Time to report it.

3. Submit a detailed, precise bug report.

The more specific your ticket is, the easier it will be for someone to zap the bug. Log in to GitHub, open a new issue, and be sure to fill out all the relevant details: a concise summary and a clear description are key. If it’s been mentioned by someone else, like on the Jetpack Support Forums, include a link.

Here’s a sample of what a helpful summary looks like:

Summary of the issue: The Jetpack Image widget won’t display the selected image.

Steps to reproduce:

Activate the Extra Sidebar Widgets module
Include the Jetpack Image widget in the sidebar, and fill out all the fields, including the image URL
Save the Widget and view your site
Expected behavior or result: The sidebar should display the selected image

Actual behavior or result: An error appears: “Image could not be found.”

Link to Example (if applicable): http://example.com/image-widget/

Screenshots: screenshot of error message goes here

Cross-Browser Testing, AKA “Don’t Forget About Internet Explorer 8″

If you believe you’ve come across a bug and you’ve worked through all the steps detailed above, it’s worth checking to see if the issue can be reproduced in different browsers. You can find download links to the most recent versions of all the major browsers on Browse Happy.

You should also check to see if the potential bug is limited to one browser; this is especially important for any bugs that may be Javascript or jQuery-related, as some browsers are more likely to experience those issues than others.

Contribute and comment on existing issues

In addition to reporting bugs and submitting patches, you can
การแปล กรุณารอสักครู่..
ผลลัพธ์ (ไทย) 3:[สำเนา]
คัดลอก!
สนับสนุน

เฮ้ คุณ ! ต้องการมีส่วนร่วมกับ jetpack ?

ใช่คุณ : คุณรู้หรือไม่ว่าคุณสามารถเป็นเครื่องมือในการสร้าง jetpack ที่แข็งแกร่งมากขึ้นและมีความปลอดภัย ? ถ้าคุณใช้ความรักและ Jetpack , ทำไมไม่ร่วมโครงการ ?

( ถ้าคุณไม่ได้ใช้และรัก Jetpack , คุณจะรออะไร ? ดาวน์โหลดเดี๋ยวนี้ !

ชอบ WordPress เอง jetpack เป็นโอเพนซอร์ส . คุณสามารถทดสอบ ปรับปรุง วางแผน ตรวจสอบรหัสไฟล์และดูรายงานข้อผิดพลาด , และแม้กระทั่งส่งซอฟต์แวร์ของคุณเอง มีส่วนร่วมของชุมชนเป็นสิ่งที่ทำให้ WordPress และ Jetpack แข็งแรงมาก

โดยสาเหตุ jetpack คุณปรับปรุงการทำงานของล้านของเว็บไซต์ในขณะที่ดึงดูดประสบการณ์การพัฒนาภาคปฏิบัติ ที่ดีที่สุดของทั้งหมดนักพัฒนาทุกระดับสามารถช่วย - ไม่ว่าคุณแทบจะไม่สามารถจำตัวกรอง ( หรือ ไม่รู้ว่าหมายถึงอะไร ) หรือคุณได้เขียนปลั๊กอินของคุณเอง , มีวิธีการสำหรับคุณที่จะเข้ามา ระเบิดออก :

เริ่มต้น , กลาง , และตัวเลือกการสนับสนุนขั้นสูง .
วิธีการตรวจสอบรหัสแหล่งที่มา .
วิธีการสร้างรายงานข้อผิดพลาดที่ดี วิธีการเขียน และส่ง

แพทช์ปฏิบัติที่ดีที่สุดสำหรับการพัฒนา . .
สนับสนุนให้ทุกคน

หลังบ้านจรวด : Jetpack มือใหม่

เพิ่งรู้ว่า jetpack คืออะไร ? ยินดีต้อนรับ

ก่อนติดตั้ง jetpack ในการทดสอบเว็บไซต์และค้นหารอบๆ -- ใช้บางโมดูล และลองมือของคุณที่ปรับแต่งได้ ( ต้องการสถานที่เพื่อเริ่มต้น ให้ธีมมือถือลอง หรือ ย้าย ปุ่มที่ใช้งานร่วมกันของคุณ )

ต่อไป แล้วลงนามสำหรับการทดสอบเบต้าทดสอบเบต้าให้ปรับปรุง แก้ไข และใหม่โมดูลทดสอบก่อนที่จะถูกเปิดเผยออกมา พวกเขาก็เป็นส่วนหนึ่งของกระบวนการพัฒนา หากคุณสนใจในการเข้าร่วมกลุ่มเบต้า กรอกแบบฟอร์มนี้เพื่อแจ้งให้เราทราบ .

เมื่อคุณจัดการกับ jetpack ทำงานอย่างไร ทำไมไม่ไปดูที่บริการ เครื่องมือที่เราใช้ในการติดตามข้อผิดพลาด ?คุณจะพร้อมที่จะเริ่มส่งรายงานข้อผิดพลาดในเวลาไม่ .

ช่วงยาวเที่ยวบิน : กลางเวบ

ถ้าคุณกำลังอ่านสบายและแก้ไขรหัส แต่ยังไม่ได้เขียนของคุณเองจากรอยขีดข่วน ช่วยปัญหาผิด โดยการส่งรายงานข้อผิดพลาด ถ้าคุณไม่เคยส่งรายงานข้อผิดพลาดก่อนตรวจสอบการรายงานข้อผิดพลาดที่ดีเพื่อให้แน่ใจว่ารายงานของคุณมีข้อมูลทั้งหมดเป็นนักพัฒนาต้องการที่จะแก้ไขปัญหาได้อย่างรวดเร็วและมีประสิทธิภาพ .

ถ้าคุณกำลังจะส่งรายงาน คุณจะยังต้องการที่จะได้คุ้นเคยกับบริการ . เมื่อคุณได้รับรายงานสบาย มองไปรอบๆ รหัสและได้รับการพร้อมที่จะใช้ขั้นตอนต่อไป - ส่งแพทช์

อวกาศเดินทาง :นักพัฒนาขั้นสูง

คุณเขียนรหัสของคุณเอง ? บางทีคุณอาจจะได้เขียนปลั๊กอินของคุณเอง หรือ ใส่แว่นกันแดดเพื่อเพื่อนโดยตรงเข้าไปในแกนกลางของ WordPress นายสบายอ่านของคนอื่นรหัส และเสนอแนะการปรับปรุง ?

ถ้าเป็นคุณกระโดดในการต่อสู้และเริ่มต้นการสร้างและส่งแพทช์ดูประเด็นที่โดดเด่นเหล่านี้ที่จะได้รับความคิดของประเภทของสิ่งที่ชุมชนได้ระบุว่าต้องการความสนใจ

ถั่วและ bolts ของบริจาค

กับ

กลุ่มเบต้าเบต้า กลุ่มของเราคือ กลุ่มของคนฉลาด ( กลุ่มที่เลือกของผู้ใช้และนักพัฒนา Wordpress ) ใครบอกเราว่า เรา กำลังทำอะไรผิด ( ขวา ) ในรุ่นถัดไปของ jetpack .ภารกิจของคุณเป็นผู้ทดสอบรุ่นเบต้าจะช่วยเราทดสอบรุ่นถัดไปของ jetpack และแจ้งให้เราทราบเกี่ยวกับประสบการณ์ของคุณ เป็น UI ที่สับสน ? เป็นโมดูลไม่ทำงานหรอ

ติดต่อเราเพื่อแจ้งให้เราทราบหากคุณสนใจในการช่วยออก เข้าร่วม , คุณจะต้องดาวน์โหลดและติดตั้งปลั๊กอิน Jetpack ผู้ทดสอบเบต้า , และให้แน่ใจว่าคุณใช้รุ่นล่าสุดของ WordPress ( หมายเหตุ :คุณจะไม่สามารถเข้าถึงเบต้าทดสอบปลั๊กอินจนกว่าคุณจะได้รับการเพิ่มไปยังกลุ่ม )



เช็ครหัสแหล่งที่มามากที่สุดซอฟต์แวร์โครงการ รวมถึง WordPress ใช้ระบบการควบคุมเวอร์ชันเพื่อติดตามแหล่งที่มาของรหัสและการแก้ไข . สามารถใช้ได้กับบริการ Jetpack . นี่คือพื้นฐานของการดาวน์โหลด Jetpack ใช้ไป

( ถ้าคุณไม่คุ้นเคยกับบริการไปแล้ว ,ส่วนบริการคู่มือวิดีโอเป็นสถานที่ที่ดีที่จะเริ่มต้น การติดตั้งไป )



วิธีที่ง่ายที่สุดที่จะได้รับไปเพื่อดาวน์โหลดแพคเกจไบนารีสำหรับระบบปฏิบัติการของคุณจากและเว็บไซต์ไปก็มีแพคเกจสำหรับระบบปฏิบัติการหลักส่วนใหญ่รวมทั้ง Mac OSX , Windows , หลายรุ่นของ Linux , และอื่น ๆ .

สำหรับข้อมูลเพิ่มเติม , ตรวจสอบเอกสารบนเว็บไซต์ไป . .

สร้างบริการบัญชี ,และการสร้างคีย์ SSH

jetpack รหัสเป็นเจ้าภาพในการ github.com . แม้ว่าคุณจะสามารถเรียกดูปลั๊กอินรหัส และยังดาวน์โหลดได้โดยไม่ต้องสร้างบัญชีผู้ใช้ คุณจะต้องลงทะเบียนถ้าคุณต้องการมีส่วนร่วมโดยการรายงานข้อผิดพลาดหรือการแพทช์

เมื่อคุณได้ลงทะเบียน เราขอแนะนำให้คุณสร้างคีย์ SSH เพื่อสร้างการเชื่อมต่อที่ปลอดภัยระหว่างคอมพิวเตอร์ของคุณและบริการ .นี้จะช่วยให้คุณดึงรหัสจากบริการ และผลักดันให้ซอฟต์แวร์โดยไม่ต้องใส่รหัสผ่านทุกครั้ง คุณสามารถปฏิบัติตามคู่มือนี้เพื่อเพิ่มคีย์ SSH ไปยังคอมพิวเตอร์ของคุณและบัญชีบริการของคุณ

นำทาง Jetpack ไปกรุ

รหัสแหล่งที่มาและการแก้ไขจะถูกเก็บไว้ในพื้นที่เก็บข้อมูลคุณเชื่อมต่อเพื่อเก็บข้อมูลโดยใช้อินเตอร์เฟซบรรทัดคำสั่ง ( CLI ) หรือกับโปรแกรมไคลเอนต์ , ซึ่งช่วยให้คุณดู , มุมมอง , แก้ไข , แก้ไขรหัสแหล่งที่มา .

Jetpack เก็บสามารถใช้ได้ที่นี่และมี 4 ส่วน สำคัญ :

อาจารย์ : รหัสพัฒนาใหม่ล่าสุด
รุ่น : รหัส ที่ช่วยให้คุณรู้ว่าสิ่งที่คุณกำลังมองหารุ่น Jetpack ( เช่น 2.3.1 )ทุกรุ่นของธนากร Jetpack มีแท็ก .
สาขา : ก่อนหน้านี้ jetpack รุ่น บางครั้งเมื่อมีสาขาประชาสัมพันธ์ jetpack ใหม่ เราเก็บรักษารุ่นก่อนหน้าที่มีการแก้ไขบั๊ก ( ข้อผิดพลาดหลักและมักจะ จำกัด การรักษาความปลอดภัยปัญหา )
ประเด็น : แมลงถูกแสดงคุณลักษณะความเห็น , ข้อเสนอแนะ , แพทช์ . . . พวกเขาอยู่ในนั้น เช็ครหัส

เมื่อคุณติดตั้งไป ,คุณจะต้องตรวจสอบรหัสก่อนที่คุณจะสามารถทำมัน , คุณจะต้องดาวน์โหลดโค้ดจากระยะไกล ( เก็บข้อมูล ) ไปยังเครื่องคอมพิวเตอร์ของคุณ นี่เป็นวิธีที่ :

ไปที่หน้าบริการ Jetpack , และกดที่ปุ่ม " ส้อมส้อม

" : เมื่อทำดังนั้นคุณให้สำเนาของการพัฒนาในปัจจุบันเวอร์ชัน Jetpack บัญชีบริการของคุณเอง

ในคอมพิวเตอร์ของคุณเปิด terminal ของคุณและนำทางไปยังไดเรกทอรีที่คุณต้องการ jetpack จะตั้งอยู่ .
สั่งโคลนคำสั่ง ตัวอย่าง เพื่อตรวจสอบสำเนาของข้อมูลที่คุณเพิ่งสร้างขึ้นใน Jetpack บริการ :
ไปโคลนไป @ บริการ . com : your_github_username / jetpack.git jetpack
ไป Jetpack ไดเรกทอรี :
jetpack ซีดีเพิ่มเก็บ Jetpack เดิมเป็นใหม่ระยะไกล :มันจะช่วยให้คุณสามารถดึงการเปลี่ยนแปลงที่เราต้องเก็บเดิม ดังนั้นการรักษาสำเนาท้องถิ่นของคุณได้ถึงวันที่ .
วิ่งระยะไกลเพิ่มตอนไป @ บริการ . com : automattic / Jetpack กิต
ถ้ามันนานแล้วนะที่คุณสร้างที่ส้อม , คุณจะต้องการให้แน่ใจว่าคุณใช้รุ่นล่าสุดที่พัฒนา Jetpack , ใช้เรียกรวมคำสั่งที่ใช้เปลี่ยนแปลงล่าสุด Jetpack เพื่อเก็บข้อมูลในท้องถิ่นของคุณโดยไม่สูญเสียใด ๆของการเปลี่ยนแปลงท้องถิ่นของคุณ .

1
2
3
4
5
ไปดึงต้น

ไป init

ไปผสานต้นน้ำ / อาจารย์
สร้างรายงานข้อผิดพลาดที่ยิ่งใหญ่

ปัญหาแท็บเป็นตั๋วที่ใช้ฐานข้อมูลเพื่อติดตามโครงการและแมลงที่เราใช้เพื่อจัดการกับคุณลักษณะใหม่ รายงานข้อผิดพลาด , และงาน , งานทั่วไปมันถูกออกแบบมาเพื่อให้มันเป็นง่ายๆเป็นไปได้สำหรับคนที่จะรายงานข้อผิดพลาดและส่งแพทช์ให้รหัส

สามขั้นตอนในการเป็นบริการระดับ

1 ให้แน่ใจว่าข้อผิดพลาดเป็นข้อผิดพลาด .

ก่อนจะรายงานข้อผิดพลาดให้แน่ใจว่ามันไม่ได้เป็นเพียงอินเทอร์เน็ต gremlins หรือปัญหาความเข้ากันได้ ก่อนที่คุณจะเริ่มต้นการสอบสวนของคุณ ให้แน่ใจว่าคุณใช้รุ่นล่าสุดของ WordPress และ jetpack .

เริ่มด้วยการปิดปลั๊กอินอื่น ๆทั้งหมดของคุณและเปลี่ยนรูปแบบเริ่มต้น twentythirteen หรือ twentyfourteen . คุณยังคงเจอปัญหา ถ้าเป็นเช่นนั้น คุณอาจจะพบข้อผิดพลาด

ถ้าปัญหาจะหายไป มันอาจจะเกิดจากความขัดแย้งกับหนึ่งในปลั๊กอินของคุณหรือชุดรูปแบบ ตอนนี้ ทดสอบพวกเขาในเวลาหนึ่ง - ใช้ jetpack เท่านั้นและที่ธีมหรือปลั๊กอินที่จะกำจัดตัวแปรอื่น ๆเมื่อปัญหาปรากฏขึ้นอีกครั้ง เจอคนร้าย

2 ถ้ามันถูกรายงาน

เพื่อตรวจสอบว่าปัญหาได้รับรายงานแล้วคุณสามารถ :

เช็คปัญหาที่รู้จักกันหน้า .
ดูผ่านรายการปัจจุบันของการเปิดประเด็น
ดู Jetpack สนับสนุนฟอรั่ม .
ไม่ได้กล่าวถึงในใด ๆของสถานที่เหล่านั้น ไม่ได้เกิดจากความขัดแย้งกับปลั๊กอินอื่น หรือหัวข้อ โดย จอร์จ คุณพบข้อผิดพลาด !เวลาที่จะรายงาน

3 ส่งรายละเอียดการรายงานข้อผิดพลาดแน่นอน

ยิ่งเฉพาะตั๋วคือ ง่าย จะ สำหรับบางคนที่จะปะทะแมลง เข้าสู่ระบบบริการ เปิดประเด็นใหม่ และต้องกรอกทุกรายละเอียดที่เกี่ยวข้อง : บทสรุปที่กระชับและชัดเจน มีรายละเอียดสำคัญ ถ้ามันถูกกล่าวถึงโดยคนอื่น เหมือนใน Jetpack สนับสนุนฟอรั่ม , รวมลิงค์

นี่ตัวอย่างของสิ่งที่สรุปประโยชน์ดูเหมือน :

สรุปประเด็น : Jetpack ภาพ Widget จะแสดงภาพที่เลือกไม่ได้

ขั้นตอนการทำซ้ำ :

เปิดพิเศษเครื่องมือแถบด้านข้างโมดูล
รวม Jetpack ภาพเครื่องมือในแถบด้านข้างและกรอกข้อมูลในเขตข้อมูลทั้งหมด รวมทั้งภาพ URL
บันทึกเครื่องมือและดูเว็บไซต์ของคุณ
คาดว่าพฤติกรรมหรือผลแถบด้านข้างจะแสดงภาพที่เลือก

จริงพฤติกรรมหรือผล : ข้อผิดพลาด : " ภาพที่ปรากฏไม่พบ . "

ลิงค์ตัวอย่าง ( ถ้ามี ) : http : / / ภาพตัวอย่าง . com / เครื่องมือ /

! : ภาพหน้าจอของข้อความแสดงข้อผิดพลาดไปที่นี่

การทดสอบเบราว์เซอร์ข้าม , อาคา " อย่าลืมเกี่ยวกับ Internet Explorer 8

บอกว่าถ้าคุณเชื่อว่า คุณเคยเจอปัญหา และคุณทำงานผ่านขั้นตอนรายละเอียดทั้งหมดข้างต้น มันเป็นมูลค่าการตรวจสอบเพื่อดูว่าปัญหานี้สามารถทำซ้ำในเบราว์เซอร์ที่แตกต่างกัน คุณสามารถค้นหาการเชื่อมโยงเพื่อดาวน์โหลดรุ่นล่าสุดของเบราว์เซอร์หลักทั้งหมดในดูมีความสุข

คุณควรตรวจสอบเพื่อดูว่าปัญหาอาจเกิดขึ้นเพียงหนึ่งเบราว์เซอร์ ;นี้เป็นสิ่งสำคัญโดยเฉพาะอย่างยิ่งสำหรับข้อบกพร่องใด ๆที่อาจจะเกี่ยวข้องกับ jQuery JavaScript หรือเป็นเบราว์เซอร์บางตัวมีโอกาสที่จะพบปัญหาเหล่านั้นมากกว่าคนอื่น ๆ .

มีส่วนร่วมและแสดงความคิดเห็นเกี่ยวกับปัญหาที่มีอยู่

นอกจากการรายงานข้อผิดพลาดและการส่งซอฟต์แวร์คุณสามารถ
การแปล กรุณารอสักครู่..
 
ภาษาอื่น ๆ
การสนับสนุนเครื่องมือแปลภาษา: กรีก, กันนาดา, กาลิเชียน, คลิงออน, คอร์สิกา, คาซัค, คาตาลัน, คินยารวันดา, คีร์กิซ, คุชราต, จอร์เจีย, จีน, จีนดั้งเดิม, ชวา, ชิเชวา, ซามัว, ซีบัวโน, ซุนดา, ซูลู, ญี่ปุ่น, ดัตช์, ตรวจหาภาษา, ตุรกี, ทมิฬ, ทาจิก, ทาทาร์, นอร์เวย์, บอสเนีย, บัลแกเรีย, บาสก์, ปัญจาป, ฝรั่งเศส, พาชตู, ฟริเชียน, ฟินแลนด์, ฟิลิปปินส์, ภาษาอินโดนีเซี, มองโกเลีย, มัลทีส, มาซีโดเนีย, มาราฐี, มาลากาซี, มาลายาลัม, มาเลย์, ม้ง, ยิดดิช, ยูเครน, รัสเซีย, ละติน, ลักเซมเบิร์ก, ลัตเวีย, ลาว, ลิทัวเนีย, สวาฮิลี, สวีเดน, สิงหล, สินธี, สเปน, สโลวัก, สโลวีเนีย, อังกฤษ, อัมฮาริก, อาร์เซอร์ไบจัน, อาร์เมเนีย, อาหรับ, อิกโบ, อิตาลี, อุยกูร์, อุสเบกิสถาน, อูรดู, ฮังการี, ฮัวซา, ฮาวาย, ฮินดี, ฮีบรู, เกลิกสกอต, เกาหลี, เขมร, เคิร์ด, เช็ก, เซอร์เบียน, เซโซโท, เดนมาร์ก, เตลูกู, เติร์กเมน, เนปาล, เบงกอล, เบลารุส, เปอร์เซีย, เมารี, เมียนมา (พม่า), เยอรมัน, เวลส์, เวียดนาม, เอสเปอแรนโต, เอสโทเนีย, เฮติครีโอล, แอฟริกา, แอลเบเนีย, โคซา, โครเอเชีย, โชนา, โซมาลี, โปรตุเกส, โปแลนด์, โยรูบา, โรมาเนีย, โอเดีย (โอริยา), ไทย, ไอซ์แลนด์, ไอร์แลนด์, การแปลภาษา.

Copyright ©2025 I Love Translation. All reserved.

E-mail: