{ "Wildcards Manager": "萬用字元管理器", "Dynamic Prompts": "動態提示詞", "Dynamic Prompts enabled": "啟用動態提示詞", "Combinatorial generation": "組合生成", "Max generations (0 = all combinations - the batch count value is ignored)": "最大產生數(0 = 所有組合 - 忽略批次數值)", "Combinatorial batches": "組合批次", "Prompt Magic": "提示詞魔法", "Magic prompt": "魔法提示詞", "Max magic prompt length": "魔法提示詞最大長度", "Magic prompt creativity": "魔法提示詞創意", "Magic prompt model": "魔法提示詞模型", "Gustavosta/MagicPrompt-Stable-Diffusion": "Gustavosta/MagicPrompt-Stable-Diffusion", "daspartho/prompt-extend": "daspartho/prompt-extend", "succinctly/text2image-prompt-generator": "succinctly/text2image-prompt-generator", "microsoft/Promptist": "microsoft/Promptist", "AUTOMATIC/promptgen-lexart": "AUTOMATIC/promptgen-lexart", "AUTOMATIC/promptgen-majinai-safe": "AUTOMATIC/promptgen-majinai-safe", "AUTOMATIC/promptgen-majinai-unsafe": "AUTOMATIC/promptgen-majinai-unsafe", "kmewhort/stable-diffusion-prompt-bolster": "kmewhort/stable-diffusion-prompt-bolster", "Gustavosta/MagicPrompt-Dalle": "Gustavosta/MagicPrompt-Dalle", "Ar4ikov/gpt2-650k-stable-diffusion-prompt-generator": "Ar4ikov/gpt2-650k-stable-diffusion-prompt-generator", "Ar4ikov/gpt2-medium-650k-stable-diffusion-prompt-generator": "Ar4ikov/gpt2-medium-650k-stable-diffusion-prompt-generator", "crumb/bloom-560m-RLHF-SD2-prompter-aesthetic": "crumb/bloom-560m-RLHF-SD2-prompter-aesthetic", "Meli/GPT2-Prompt": "Meli/GPT2-Prompt", "DrishtiSharma/StableDiffusion-Prompt-Generator-GPT-Neo-125M": "DrishtiSharma/StableDiffusion-Prompt-Generator-GPT-Neo-125M", "Magic prompt blocklist regex": "魔法提示詞黑名單。", "Magic Prompt batch size": "魔法提示詞批次大小", "I'm feeling lucky": "手氣不錯", "Attention grabber": "隨機關鍵詞吸引註意力", "Minimum attention": "最小注意力", "Maximum attention": "最大注意力", "Don't apply to negative prompts": "不用於反向提示詞。", "Need help?": "需要幫助?", "Syntax cheatsheet": "語法速查表", "Tutorial": "教學", "Discussions": "討論串", "Report a bug": "回報錯誤", "Combinations": "組合", "Choose a number of terms from a list, in this case we choose two artists:": "從列表中選幾項,這裡選了兩個藝術家", "{2$$artist1|artist2|artist3}": "{2$$artist1|artist2|artist3}", "If $$ is not provided, then 1$$ is assumed.": "若沒提供 $$,默認為 1$$", "If the chosen number of terms is greater than the available terms, then some terms will be duplicated, otherwise chosen terms will be unique. This is useful in the case of wildcards, e.g.": "選的項數多於提供的項數時,有些項會重複,其餘情況各選項會保持唯一;\n重複對於萬用字元很有用,例如:", "{2$$__artist__}": "{2$$__artist__}", "is equivalent to": "等同於", "{2$$__artist__|__artist__}": "{2$$__artist__|__artist__}", "A range can be provided:": "項數可以有範圍", "{1-3$$artist1|artist2|artist3}": "{1-3$$artist1|artist2|artist3}", "In this case, a random number of artists between 1 and 3 is chosen.": "此例中,會從中隨機選 1 至 3 個藝術家", "Options can be given weights:": "可以給選項權重:", "{2::artist1|artist2}": "{2::artist1|artist2}", "In this case, artist1 will be chosen twice as often as artist2.": "此例中,藝術家 1 將會比藝術家 2 高兩倍的機會被選中", "Wildcards can be used and the joiner can also be specified:": "可以用萬用字元,也可以指定拼接符", "{{1-$$and$$__adjective__}}": "{{1-3$$and$$__adjective__}}", "Here, a random number between 1 and 3 words from adjective.txt will be chosen and joined together with the word 'and' instead of the default comma.": "此處,會從 adjective.txt 中選取隨機 1 至 3 行,以 'and'(而不是默認的逗號)拼接", "Wildcards": "萬用字元", "Find and manage wildcards in the Wildcards Manager tab.": "在萬用字元管理器分頁中尋找並管理萬用字元", "__/mywildcards__": "__/mywildcards__", "will then become available.": "目錄內的文字檔案將可以被讀取。", "Find more settings on the": "尋找更多設定請前往", "tab": "頁籤", "Jinja2 templates": "Jinja2 模板", "Enable Jinja2 templates": "啟用 Jinja2 模板", "Help for Jinja2 templates": "Jinja2 模板幫助", "Jinja2 templates is an experimental feature for advanced template generation. It is not recommended for general use unless you are comfortable with writing scripts.": "Jinja2 範本是一個用於進階範本產生的實驗性特性。如果不熟悉編寫指令碼,正常使用時不建議啟用", "Literals": "字面值", "I love red roses": "I love red roses", "Random choices": "隨機選擇", "I love {{ choice('red', 'blue', 'green') }} roses": "I love {{ choice('red', 'blue', 'green') }} roses", "This will randomly choose one of the three colors.": "會隨機從三種顏色中選一個", "Iterations": "迭代次數", "{% for colour in ['red', 'blue', 'green'] %}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% endfor %}": "{% for colour in ['red', 'blue', 'green'] %}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% endfor %}", "This will produce three prompts, one for each color. The prompt tag is used to mark the text that will be used as the prompt. If no prompt tag is present then only one prompt is assumed": "會產生三條提示詞,每個顏色各一條;\n 提示詞標籤用於標記作為提示詞的文字;\n 如果沒有提示詞標籤則默認為僅一條提示詞", "{% for colour in wildcard(\"__colours__\") %}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% endfor %}": "{% for colour in wildcard(\"__colours__\") %}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% endfor %}", "This will produce one prompt for each colour in the wildcard.txt file.": "會為 colours.txt 中的每個顏色產生一條提示詞", "Conditionals": "條件", "{% for colour in [\"red\", \"blue\", \"green\"] %}\n {% if colour == \"red\"}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% else %}\n {% prompt %}I hate {{ colour }} roses{% endprompt %}\n {% endif %}\n {% endfor %}": "{% for colour in [\"red\", \"blue\", \"green\"] %}\n {% if colour == \"red\"}\n {% prompt %}I love {{ colour }} roses{% endprompt %}\n {% else %}\n {% prompt %}I hate {{ colour }} roses{% endprompt %}\n {% endif %}\n {% endfor %}", "This will produce the following prompts:": "會產生下列提示詞", "I hate blue roses": "I hate blue roses", "I hate green roses": "I hate green roses", "Jinja2 templates are based on the Jinja2 template engine. For more information see the": "Jinja2 模板基於 Jinja2 模板引擎,更多訊息參考", "Jinja2 documentation.": "Jinja2 文件資料。", "If you are using these templates, please let me know if they are useful.": "如果你在用這些模板,請告訴我它們是否有用", "Advanced options": "進階選項", "Some settings have been moved to the settings tab. Find them in the Dynamic Prompts section.": "一些選像已移至設定。 位於動態提示詞部分。", "Unlink seed from prompt": "將隨機種子與提示詞解綁", "Fixed seed": "固定隨機種子", "Write raw prompt to image": "將提示詞寫入圖像", "Don't generate images": "不產生圖像", "Write prompts to file": "將提示詞寫入檔案", "Manage wildcards for Dynamic Prompts": "管理動態提示詞擴充功能的萬用字元", "1. Create your wildcard library by copying a collection using the dropdown below.": "1. 使用下方的下拉選單選擇一個選集,並按下複製選集來創建您的萬用字源庫。", "2. Click on any of the files that appear in the tree to edit them.": "2. 點擊上方選項中出現的文件進行編輯。", "3. Use the wildcard in your script by typing the name of the file or copying the text from the Wildcards file text box": "3. 在提示詞中使用萬用字元,輸入檔案名稱或從萬用字元檔案檔案編輯器中複製文字。", "Select a collection": "選擇選集", "artists": "藝術家", "devilkkw": "devilkkw", "jumbo": "jumbo", "nai": "nai", "nsp": "nsp", "parrotzone": "parrotzone", "Copy collection": "複製選集", "Overwrite existing": "覆寫既有", "Refresh wildcards": "重新整理萬用字元", "Delete all wildcards": "刪除全部萬用字元", "Wildcards file": "萬用字元檔案", "File editor": "檔案編輯器", "Save wildcards": "儲存萬用字元", "Action": "動作", "Ignore whitespace in prompts: All newlines, tabs, and multiple spaces are replaced by a single space": "忽略提示中的空格:所有換行符號、定位點和多個空格都會被替換為一個空格。", "Save template to metadata: Write prompt template into the PNG metadata": "將範本保存至元數據:將提示詞範本寫入PNG數據中", "Write prompts to file: Create a new .txt file for every batch containing the prompt template as well as the generated prompts.": "將提示寫入文件:為每個批次創建一個新的 .txt 文件,其中包含提示範本和產生的提示詞。", "String to use as left bracket for parser variants, .e.g {variant1|variant2|variant3}": "作為解析器變體左括號的字符串,例如 {variant1|variant2|variant3}", "String to use as right bracket for parser variants, .e.g {variant1|variant2|variant3}": "作為解析器變體右括號的字符串,例如 {variant1|variant2|variant3}", "String to use as wrap for parser wildcard, .e.g __wildcard__": "用作解析萬用字元的字串命令,例如 __wildcard__", "Limit Jinja prompts: Limit the number of prompts to batch_count * batch_size. The default is to generate batch_count * barch_size * number of prompts generated by Jinja": "將提示的數量限制為 batch_count * batch_size。預設是產生 batch_count * batch_size * Jinja 產生的提示數量。", "sd-dynamic-prompts": "sd-dynamic-prompts", "https://github.com/adieyal/sd-dynamic-prompts.git": "https://github.com/adieyal/sd-dynamic-prompts.git", "Disable dynamic prompts by unchecking this box.": "取消勾選以停用動態提示詞", "Instead of generating random prompts from a template, combinatorial generation produces every possible prompt from the given string.\nThe prompt 'I {love|hate} {New York|Chicago} in {June|July|August}' will produce 12 variants in total.\n\nThe value of the 'Seed' field is only used for the first image. To change this, look for 'Fixed seed' in the 'Advanced options' section.": "使用組合產生而非從範本產生隨機提示,會從給定的字串中產生所有可能的提示。\n例如提示字串'I {love|hate} {New York|Chicago} in {June|July|August}',會總共產生12種不同的提示。\n\n「Seed」欄位的值僅會用於生成第一張圖片。若要更改此值,請尋找「Advanced options」區塊中的「Fixed seed」選項。", "Limit the maximum number of prompts generated. 0 (default) will generate all images. Useful to prevent an unexpected combinatorial explosion.": "限制產生的提示詞數量的上限,預設為0,表示產生所有圖像。這個選項可以防止過多的組合。", "Re-run your combinatorial batch this many times with a different seed each time.": "這個選項表示用不同的種子重新運行組合產生的批次數據。在每次運行中,種子值都會改變,這樣可以產生不同的隨機順序或排列組合。", "Magic Prompt adds interesting modifiers to your prompt for a little bit of extra spice.\nThe first time you use it, the MagicPrompt model is downloaded so be patient.\nIf you're running low on VRAM, you might get a CUDA error.": "魔法提示詞在提示詞中加入有趣的修飾,額外增添趣味。\n首次使用時會下載 MagicPrompt 模型,請耐心等待。\n在低 VRAM 情況下可能會導致 CUDA 報錯。", "Controls the maximum length in tokens of the generated prompt.": "按標記數控制已產生的提示詞最大長度", "Adjusts the generated prompt. You will need to experiment with this setting.": "調整已產生的提示詞,使用時要嘗試調整此設定", "Regular expression pattern for blocking terms out of the generated prompt. Applied case-insensitively. For instance, to block both \"purple\" and \"interdimensional\", you could use the pattern \"purple|interdimensional\".": "用於排除提示詞語的表達式。忽略大小寫。例如,要封鎖 'purple' 和 'interdimensional',可以使用 'purple | interdimensional'", "The number of prompts to generate per batch. Increasing this can speed up prompt generation at the expense of slightly increased VRAM usage.": "每個批次要產生的提示詞數量。增加此數量可以加快提示詞產生速度,但會略微增加 VRAM 的使用。", "Uses the lexica.art API to create random prompts.\nThe prompt in the main prompt box is used as a search string.\nLeaving the prompt box blank returns a list of completely randomly chosen prompts.\nTry it out, it can be quite fun.": "用 lexica.art API 生成隨機提示詞\n提示詞框中的內容會作為搜索字串\n留空提示詞框會得到一組完全隨機選擇的提示詞\n用用看,它會很有趣", "Randomly selects a keyword from the prompt and adds emphasis to it. Try this with Fixed Seed enabled.": "隨機強調提示詞中的一個關鍵詞,嘗試前要啟用固定隨機種子", "Don't use prompt magic on negative prompts.": "不要對反向提示詞使用提示詞魔法。", "Jinja2 templates are an expressive alternative to the standard syntax. See the Help section below for instructions.": "Jinja2 模板是標準語法富有表現力的一種替代品,相關說明參見下方幫助欄", "Check this if you want to generate random prompts, even if your seed is fixed": "勾選此選項以在固定隨機種子的情況下依然產生隨機提示詞", "Select this if you want to use the same seed for every generated image.\nThis is useful if you want to test prompt variations while using the same seed.\nIf there are no wildcards then all the images will be identical.": "勾選此選項以對每張產生的圖像用同樣的隨機種子。\n這在想用同樣的隨機種子測試提示詞變化時會有用。\n沒有萬用字元則所有圖像會相同。", "Write the prompt template into the image metadata": "將提示詞範本寫入圖片數據。", "Be sure to check the 'Write prompts to file' checkbox if you don't want to lose the generated prompts. Note, one image is still generated.": "不想失去產生的提示詞的話,需確保勾選 「將提示詞寫入檔案」。注意,依然會生成一張圖像。", "The generated file is a slugified version of the prompt and can be found in the same directory as the generated images.\nE.g. in ./outputs/txt2img-images/.": "產生的檔案包含處理過的提示詞,和產生的圖像在同一目錄。\n例如 ./outputs/txt2img-images/", "Complete documentation is available at https://github.com/adieyal/sd-dynamic-prompts. Please report any issues on GitHub.": "完整說明請在 https://github.com/adieyal/sd-dynamic-prompts 上取得。 任何問提請在 GitHub 上報告。", "Generate all possible prompt combinations.": "產生所有可能的提示詞組合。", "Automatically update your prompt with interesting modifiers. (Runs slowly the first time)": "使用有趣的修飾符自動更新你的提示詞。(第一次運行會比較慢)", "Generate random prompts from lexica.art (your prompt is used as a search query).": "從 lexica.art 產生隨機提示詞(你的提示詞會被用作搜尋查詢)", "Use the same seed for all prompts in this batch": "對這批次中的所有提示詞使用相同的種子", "Write all generated prompts to a file": "將所有產生的提示詞寫入檔案", "If this is set, then random prompts are generated, even if the seed is the same.": "如果設定了此項,則會產生隨機提示詞,即使種子相同。", "Disable image generation. Useful if you only want to generate text prompts. (1 image will still be generated to keep Auto1111 happy.).": "停用圖像產生。這很有用,如果你只想產生文字提示。(仍將生成 1 張圖像以使 Auto1111 保持運行)", "Add emphasis to a randomly selected keyword in the prompt.": "在提示詞中隨機選擇一個關鍵字加上強調符", "Write template into image metadata.": "將範本寫入圖像中繼資料。", "Note: Each model will download between 300mb and 1.4gb of data on first use.": "註記:每個模型第一次使用時會下載 300MB 到 1.4GB 的檔案。" }