131 lines
18 KiB
JSON
131 lines
18 KiB
JSON
{
|
||
"Wildcards Manager": "Wildcards Manager",
|
||
"Dynamic Prompts": "Dynamic Prompts",
|
||
"Dynamic Prompts enabled": "Dynamic Prompts が有効",
|
||
"Combinatorial generation": "組み合わせ生成",
|
||
"Max generations (0 = all combinations - the batch count value is ignored)": "最大生成数 (0 = すべての組み合わせ - この時バッチ数は無視されます)",
|
||
"Combinatorial batches": "組み合わせのバッチ",
|
||
"Prompt Magic": "Prompt Magic",
|
||
"Magic prompt": "Magic prompt",
|
||
"Max magic prompt length": "Magic prompt の最大長",
|
||
"Magic prompt creativity": "Magic prompt の創造性",
|
||
"Magic prompt model": "Magic prompt モデル",
|
||
"Magic prompt blocklist regex": "Magic prompt のブロックリスト正規表現",
|
||
"I'm feeling lucky": "I'm feeling lucky",
|
||
"Attention grabber": "Attention grabber(プロンプトの後ろの: 1.5などのこと)",
|
||
"Minimum attention": "Attentionの最小値",
|
||
"Maximum attention": "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:": "以下のプロンプトの場合、artistから2つを選択します。",
|
||
"{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.": "選択した用語の数がプロンプトより大きい場合、プロンプトが複製されます。 これはワイルドカードを使う際に便利です。例えば、",
|
||
"{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のランダムの数のartistが選ばれます。",
|
||
"Options can be given weights:": "オプションでweightを与えられます",
|
||
"{2::artist1|artist2}": "{2::artist1|artist2}",
|
||
"In this case, artist1 will be chosen twice as often as artist2.": "この場合、artist1はartist2の2倍の確率で選ばれます。",
|
||
"Wildcards can be used and the joiner can also be specified:": "ワイルドカードを何でつなぐかも指定できます。",
|
||
"{{1-$$and$$__adjective__}}": "{{1-$$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.": "この場合1~3の単語がadjective.txtから選択され、それらの単語がandで接続されます。デフォルト設定はカンマ”,”です。",
|
||
"Wildcards": "ワイルドカード",
|
||
"Find and manage wildcards in the Wildcards Manager tab.": "ワイルドカードはワイルドカードマネージャーのタブで管理します。",
|
||
"You can add more wildcards by creating a text file with one term per line and name is mywildcards.txt. Place it in D:\\StableDiffusion\\clean install\\webui\\extensions\\sd-dynamic-prompts\\wildcards.": "1行に1つの用語を持つテキストファイルを作成することで、ワイルドカードを追加することができます。名前はmywildcards.txtです。テキストファイルの格納ディレクトリは”D:\\StableDiffusion\\clean install\\webui\\extensions\\sd-dynamic-prompts\\wildcards\"です。",
|
||
"__<folder>/mywildcards__": "__<folder>/mywildcards__",
|
||
"will then become available.": "こうすることで利用可能になります。",
|
||
"Find more settings on the": "より詳細な設定は",
|
||
"tab": "タブ",
|
||
"You are using": "使用しています",
|
||
"version 2.7.2 of the WebUI extension": "webUI Extensionのバージョン 2.7.2",
|
||
", and the underlying": "を選択します。",
|
||
"dynamicprompts library is version 0.7.1": "dynamicprompts ライブラリはバージョン 0.7.1 です。",
|
||
"Jinja2 templates": "Jinja2 templates",
|
||
"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.": "これにより、3色の中からランダムに1色が選ばれます。",
|
||
"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": "これにより、各色に1つずつ、計3つのプロンプトが生成されます。プロンプトタグは、プロンプトとして使用されるテキストをマークするために使用されます。プロンプトタグが存在しない場合は、プロンプトは1つだけとみなされます。",
|
||
"{% 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.": "これにより、wildcard.txtファイル内の各色に対して1つのプロンプトが生成されます。",
|
||
"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": "Write raw prompt to image",
|
||
"Don't generate images": "画像を生成しない",
|
||
"Write prompts to file": "プロンプトをファイルに書き出し",
|
||
"Manage wildcards for Dynamic Prompts": "Dynamic Prompts 用のワイルドカードを管理",
|
||
"1. Create your wildcard library by copying a collection using the dropdown below.": "1. Create your wildcard library by copying a collection using the dropdown below.",
|
||
"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. Use the wildcard in your script by typing the name of the file or copying the text from the Wildcards file text box",
|
||
"4. Optional - add your own wildcards files to the D:\\StableDiffusion\\clean install\\webui\\extensions\\sd-dynamic-prompts\\wildcards folder": "4. Optional - add your own wildcards files to the D:\\StableDiffusion\\clean install\\webui\\extensions\\sd-dynamic-prompts\\wildcards folder",
|
||
"Select a collection": "コレクションを選択",
|
||
"Copy collection": "コレクションをコピー",
|
||
"Overwrite existing": "既存の内容を上書き",
|
||
"Refresh wildcards": "ワイルドカードを更新",
|
||
"Delete all wildcards": "全てのワイルドカードを削除",
|
||
"Wildcards file": "ワイルドカードファイル",
|
||
"File editor": "ファイルエディター",
|
||
"Save wildcards": "ワイルドカードを保存",
|
||
"Action": "Action",
|
||
"Ignore whitespace in prompts: All newlines, tabs, and multiple spaces are replaced by a single space": "プロンプトの空白を無視: 全ての改行、タブ、複数の空白は1つの空白に置き換えられる",
|
||
"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.": "Write prompts to file: Create a new .txt file for every batch containing the prompt template as well as the generated prompts.",
|
||
"String to use as left bracket for parser variants, .e.g {variant1|variant2|variant3}": "String to use as left bracket for parser variants, .e.g {variant1|variant2|variant3}",
|
||
"String to use as right bracket for parser variants, .e.g {variant1|variant2|variant3}": "String to use as right bracket for parser variants, .e.g {variant1|variant2|variant3}",
|
||
"sd-dynamic-prompts": "sd-dynamic-prompts",
|
||
"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.": "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.",
|
||
"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.": "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.": "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.",
|
||
"Controls the maximum length in tokens of the generated prompt.": "Controls the maximum length in tokens of the generated prompt.",
|
||
"Adjusts the generated prompt. You will need to experiment with this setting.": "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\".": "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\".",
|
||
"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.": "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.",
|
||
"Randomly selects a keyword from the prompt and adds emphasis to it. Try this with Fixed Seed enabled.": "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.": "ネガティブプロンプトで prompt magic を使用しない。",
|
||
"Jinja2 templates are an expressive alternative to the standard syntax. See the Help section below for instructions.": "Jinja2 templates are an expressive alternative to the standard syntax. See the Help section below for instructions.",
|
||
"Check this if you want to generate random prompts, even if your seed is fixed": "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.": "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.",
|
||
"Write the prompt template into the image metadata": "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.": "生成されたプロンプトを失いたくない場合は、必ず「プロンプトをファイルに書き込む」チェックボックスをチェックしてください。注意: 1つの画像が生成されたままです。",
|
||
"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/.": "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/.",
|
||
"Complete documentation is available at https://github.com/adieyal/sd-dynamic-prompts. Please report any issues on GitHub.": "Complete documentation is available at https://github.com/adieyal/sd-dynamic-prompts. Please report any issues on GitHub.",
|
||
"Generate all possible prompt combinations.": "すべてのプロンプトの組み合わせを生成します。",
|
||
"Automatically update your prompt with interesting modifiers. (Runs slowly the first time)": "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.).": "画像生成を無効にします。プロンプトのテキストのみを生成したい場合に便利です。(Auto1111の状態を維持するため、1枚の画像は生成されます。)",
|
||
"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のデータをダウンロードします",
|
||
"https://github.com/adieyal/sd-dynamic-prompts.git": "https://github.com/adieyal/sd-dynamic-prompts.git"
|
||
}
|