diff --git a/translation/pofiles/th.po b/translation/pofiles/th.po index a02e3fe322..f89cde0357 100644 --- a/translation/pofiles/th.po +++ b/translation/pofiles/th.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: KiCad\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-02-10 15:35-0800\n" -"PO-Revision-Date: 2023-03-03 16:39+0000\n" +"PO-Revision-Date: 2023-03-06 14:40+0000\n" "Last-Translator: \"boonchai k.\" \n" "Language-Team: Thai \n" "Language: th\n" @@ -5865,9 +5865,8 @@ msgid "Delete clicked items" msgstr "ลบชิ้นส่วนที่คลิก" #: common/tool/actions.cpp:204 -#, fuzzy msgid "Cycle arc editing mode" -msgstr "สลับเปิดปิดโหมดเหมือนจริง" +msgstr "สลับเปิดปิดโหมดแก้ไขส่วนโค้ง" #: common/tool/actions.cpp:205 msgid "Switch to a different method of editing arcs" @@ -7848,6 +7847,85 @@ msgid "" "Double quotes (`\"`) around the arguments are recommended in case filenames " "contain spaces or special characters.\n" msgstr "" +"# 1. สรุป\n" +"\n" +"The Bill of Materials tool creates a BOM which lists all of the components " +"in the design.\n" +"\n" +"The tool uses an external script to generate a BOM in the desired output " +"format. Choosing a different script changes how the BOM is formatted.\n" +"\n" +"Generating a BOM is described in more detail in the Schematic Editor manual." +"\n" +"\n" +"# 2. การใช้งาน\n" +"\n" +"Select a generator script in the **BOM generator scripts** list. Details for " +"the selected generator are shown on the right of the dialog.\n" +"\n" +"Clicking the **Generate** button creates a BOM file with the selected " +"generator.\n" +"\n" +"The default settings present several generator script options, although some " +"additional scripts are installed with KiCad and can be added to the list " +"with the **+** button.\n" +"\n" +"**Note:** On Windows, there is an additional option **Show console window**. " +"When this option is unchecked, BOM generators run in a hidden console window " +"and any output is redirected and printed in the dialog. When this option is " +"checked, BOM generators run in a visisble console window.\n" +"\n" +"# 3. Custom generators and command lines\n" +"\n" +"Internally, KiCad creates an intermediate netlist file in XML format that " +"contains information about all of the components in the design. A BOM " +"generator script converts the intermediate netlist file to the desired " +"output format. KiCad runs the BOM generator scripts according to the command " +"line entered at the bottom of the BOM dialog.\n" +"\n" +"The command line format accepts parameters for filenames. Each formatting " +"parameter is replaced with a project-specific path or filename. The " +"supported formatting parameters are:\n" +"\n" +" * `%I`: absolute path and filename of the intermediate netlist file, which " +"is the input to the BOM generator\n" +" * `%O`: absolute path and filename of the output BOM file (without file " +"extension)\n" +" * `%B`: base filename of the output BOM file (without file extension)\n" +" * `%P`: absolute path of the project directory, without trailing slash\n" +"\n" +"**Note:** the `%O` output file parameter does not include a file extension. " +"KiCad will attempt to add an appropriate extension to the command line " +"automatically, but an extension may need to be added by hand.\n" +"\n" +"Python is the recommended tool for BOM generator scripts, but other tools " +"can also be used.\n" +"\n" +"## Example command lines for Python scripts\n" +"\n" +"The command line format for a Python script is of the form:\n" +"\n" +"```\n" +"python