Update locales [skip ci]

This commit is contained in:
github-actions
2025-09-25 21:53:10 +00:00
parent 8fdee1b7f7
commit 7abda298a8
11 changed files with 2382 additions and 6832 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1408,6 +1408,7 @@
"noise": "noise",
"sampling": "sampling",
"schedulers": "schedulers",
"audio": "audio",
"conditioning": "conditioning",
"loaders": "loaders",
"guiders": "guiders",
@@ -1438,7 +1439,6 @@
"debug": "debug",
"model": "model",
"latent": "latent",
"audio": "audio",
"3d": "3d",
"ltxv": "ltxv",
"sd3": "sd3",

View File

@@ -50,6 +50,34 @@
}
}
},
"AudioAdjustVolume": {
"display_name": "Audio Adjust Volume",
"inputs": {
"audio": {
"name": "audio"
},
"volume": {
"name": "volume",
"tooltip": "Volume adjustment in decibels (dB). 0 = no change, +6 = double, -6 = half, etc"
}
}
},
"AudioConcat": {
"display_name": "Audio Concat",
"description": "Concatenates the audio1 to audio2 in the specified direction.",
"inputs": {
"audio1": {
"name": "audio1"
},
"audio2": {
"name": "audio2"
},
"direction": {
"name": "direction",
"tooltip": "Whether to append audio2 after or before audio1."
}
}
},
"AudioEncoderEncode": {
"display_name": "AudioEncoderEncode",
"inputs": {
@@ -69,6 +97,22 @@
}
}
},
"AudioMerge": {
"display_name": "Audio Merge",
"description": "Combine two audio tracks by overlaying their waveforms.",
"inputs": {
"audio1": {
"name": "audio1"
},
"audio2": {
"name": "audio2"
},
"merge_method": {
"name": "merge_method",
"tooltip": "The method used to combine the audio waveforms."
}
}
},
"BasicGuider": {
"display_name": "BasicGuider",
"inputs": {
@@ -1678,6 +1722,23 @@
}
}
},
"EmptyAudio": {
"display_name": "Empty Audio",
"inputs": {
"duration": {
"name": "duration",
"tooltip": "Duration of the empty audio clip in seconds"
},
"sample_rate": {
"name": "sample_rate",
"tooltip": "Sample rate of the empty audio clip."
},
"channels": {
"name": "channels",
"tooltip": "Number of audio channels (1 for mono, 2 for stereo)."
}
}
},
"EmptyChromaRadianceLatentImage": {
"display_name": "EmptyChromaRadianceLatentImage",
"inputs": {
@@ -9487,6 +9548,23 @@
}
}
},
"SplitAudioChannels": {
"display_name": "Split Audio Channels",
"description": "Separates the audio into left and right channels.",
"inputs": {
"audio": {
"name": "audio"
}
},
"outputs": {
"0": {
"name": "left"
},
"1": {
"name": "right"
}
}
},
"SplitImageWithAlpha": {
"display_name": "Split Image with Alpha",
"inputs": {
@@ -10366,6 +10444,23 @@
}
}
},
"TrimAudioDuration": {
"display_name": "Trim Audio Duration",
"description": "Trim audio tensor into chosen time range.",
"inputs": {
"audio": {
"name": "audio"
},
"start_index": {
"name": "start_index",
"tooltip": "Start time in seconds, can be negative to count from the end (supports sub-seconds)."
},
"duration": {
"name": "duration",
"tooltip": "Duration in seconds"
}
}
},
"TrimVideoLatent": {
"display_name": "TrimVideoLatent",
"inputs": {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff