adding some new translation fields

This commit is contained in:
steveseguin
2024-04-01 04:32:53 -04:00
parent 7d9632aa9d
commit 202e5fe8c2
19 changed files with 3151 additions and 2966 deletions

View File

@@ -1969,24 +1969,24 @@
<span id="popupSelector_user_settings" style="display: none; visibility:hidden">
<span class="mobileHide">
<label title="Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global">Hold-to-Talk Hot-key</label>
<input type="text" id="pptHotKey" placeholder="press a key here" style="padding-left: 7px;" onkeypress="event.preventDefault;event.stopPropagation();return false;" onkeyup="event.preventDefault;event.stopPropagation();return false;" onkeydown="setHotKey();"/>
<button onclick="setHotKey(false);" style="margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;">Clear</button>
<label title="Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global" data-translate="hold-to-talk" >Hold-to-Talk Hot-key</label>
<input type="text" id="pptHotKey" placeholder="press a key here" style="padding-left: 7px;" onkeypress="event.preventDefault;event.stopPropagation();return false;" onkeyup="event.preventDefault;event.stopPropagation();return false;" onkeydown="setHotKey();"/>
<button onclick="setHotKey(false);" style="margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;" data-translate="clear">Clear</button>
<br /><br />
<label title="Draw on the Screen">Draw-on-Screen</label>
<button id='startDrawScreen' title="CTRL (cmd) + ALT + D to toggle" onclick="drawOnScreen();" style="margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;">Enable</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.erase();" style="margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;">Clear</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.stop();" style="margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;" title="CTRL (cmd) + ALT + D to toggle" >Stop</button>
<button id='startDrawScreen' title="CTRL (cmd) + ALT + D to toggle" onclick="drawOnScreen();" style="margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;" data-translate="enable" >Enable</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.erase();" style="margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;" data-translate="clear">Clear</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.stop();" style="margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;" title="CTRL (cmd) + ALT + D to toggle" data-translate="stop">Stop</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.color(this);" data-color='red' style="background-color:red; margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;">✏️</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.color(this);" data-color='blue' style="background-color:blue; margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;">✏️</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.color(this);" data-color='green' style="background-color:green; margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;">✏️</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.color(this);" data-color='black' style="background-color:black; margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;">✏️</button>
<button class='hidden drawActive' onclick="drawOnScreenObject.color(this);" data-color='white' style="background-color:white; margin: 0 0 0 4px; border-radius: 5px; padding: 3px 3px;">🎨</button>
<br /><br />
<button class="generalButton" onclick="cycleStyleOptions();" id='toggleWaveformButton' title="Audio-only sources can be stylized in different ways">Cycle between several audio-visualizations styles</button>
<button class="generalButton" onclick="cycleStyleOptions();" id='toggleWaveformButton' title="Audio-only sources can be stylized in different ways" data-translate="cycle-between-audio-visualizations">Cycle between several audio-visualizations styles</button>
<br />
</span>
<button class="generalButton" onclick="clearStorage();" title="Clear site's local storage and settings">Clear site's local browser storage and saved settings</button>
<button class="generalButton" onclick="clearStorage();" title="Clear site's local storage and settings" data-translate="cleaer-sites-local-storage">Clear site's local browser storage and saved settings</button>
</span>
</div>
@@ -2705,7 +2705,7 @@
// session.decrypted = session.decodeInvite("U2FsdGVkX1+d58DFIHoO3EQZSuX86ch4PqW2ouztnJ0="); // get a code from invite.cam
</script>
<script type="text/javascript" crossorigin="anonymous" id="lib-js" src="./lib.js?ver=1140"></script>
<script type="text/javascript" crossorigin="anonymous" id="main-js" src="./main.js?ver=848"></script>
<script type="text/javascript" crossorigin="anonymous" id="lib-js" src="./lib.js?ver=1141"></script>
<script type="text/javascript" crossorigin="anonymous" id="main-js" src="./main.js?ver=849"></script>
</body>
</html>

24
lib.js
View File

@@ -169,7 +169,10 @@ var miscTranslations = { // i can replace this list from time to time from the g
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
function getTranslation(key){ // when using this, instead of miniTranslate, if the user changes the language, it might not update. Used mainly when you don't want any HTML (<span data-translate>) being including in the translation
@@ -20371,19 +20374,19 @@ function gotDevices(deviceInfos, miconly=false) {
if (Firefox && !session.mobile){
var option = document.createElement('option');
option.value = "others";
option.text = "Show more options";
option.text = getTranslation("show-more-options");
audioOutputSelect.appendChild(option);
}
if (audioOutputSelect.childNodes.length == 0) {
option = document.createElement('option');
option.value = "default";
option.text = "System Default";
option.text = getTranslation("system-default");
audioOutputSelect.appendChild(option);
}
option = document.createElement('option');
option.text = "Disable Video";
option.text = getTranslation("disable-video");
option.value = "ZZZ";
videoSelect.appendChild(option); // NO AUDIO OPTION
@@ -20840,13 +20843,13 @@ function gotDevicesNew(deviceInfos, miconly=false) {
if (Firefox && !session.mobile){
var option = document.createElement('option');
option.value = "others";
option.text = "Show more options";
option.text = getTranslation("show-more-options");
audioOutputSelect.appendChild(option);
}
if (audioOutputSelect.childNodes.length == 0) {
option = document.createElement('option');
option.value = "default";
option.text = "System Default";
option.text = getTranslation("system-default");
audioOutputSelect.appendChild(option);
}
@@ -20957,7 +20960,7 @@ function gotDevicesNew(deviceInfos, miconly=false) {
videoSelect.appendChild(option);
});
var option = document.createElement('option');
option.text = "Disable Video";
option.text = getTranslation("disable-video");
option.value = "ZZZ";
videoSelect.appendChild(option); // NO AUDIO OPTION
if (miconly){
@@ -21520,15 +21523,14 @@ function gotDevices2(deviceInfos) {
if (Firefox && !session.mobile){
var option = document.createElement('option');
option.value = "others";
option.text = "Show more options";
option.text = getTranslation("show-more-options");
audioOutputSelect.appendChild(option);
}
if (audioOutputSelect.childNodes.length == 0) {
var option = document.createElement('option');
option.value = "default";
option.text = "System Default";
option.text = getTranslation("system-default");
audioOutputSelect.appendChild(option);
}
@@ -21612,7 +21614,7 @@ function gotDevices2(deviceInfos) {
}
var option = document.createElement('option'); // no video
option.text = "Disable Video";
option.text = getTranslation("disable-video");
option.value = "ZZZ";
videoSelect.appendChild(option);

View File

@@ -5,6 +5,11 @@
"join-room": "Join room",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Record your stream to disk",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Cancel the Director's Video/Audio",
"submit-any-error-logs": "Submit any error logs",
"show-help-contact-info": "Show help contact info",
"language-options": "Language Options",
"add-to-calendar": "Add to Calendar",
"add-group-chat-to-obs": "Add Group Chat",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "tip: Hold CTRL (command) to select Multiple",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal for 1080p60 gaming, if your computer and upload are up for it",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Better video compression and quality at the cost of increased CPU encoding load",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Disable digital audio-effects and increase audio bitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "The guest will not have a choice over audio-options",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "The guest will only be able to select their webcam as an option",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Add a password to make the stream inaccessible to those without the password",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Add the guest to a group-chat room; it will be created automatically if needed.",
"customize-the-room-settings-for-this-guest": "Customize the room settings for this guest",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Enter an HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube Video demoing how to do this",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Invite a guest or camera source to publish into the group room",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "If disabled, the invited guest will not be able to see or hear anyone in the room.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Mute this guest everywhere",
"disable-video-preview": "Disable Video Preview",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Remote Audio Settings",
"advanced-video-settings": "Advanced Video Settings",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Add to Scene 2",
"activate-or-reload-this-video-device-": "Activate or Reload this video device.",
"tip-hold-ctrl-command-to-select-multiple": "tip: Hold CTRL (command) to select Multiple",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Add Group Chat",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal for 1080p60 gaming, if your computer and upload are up for it",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Better video compression and quality at the cost of increased CPU encoding load",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Disable digital audio-effects and increase audio bitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "The guest will not have a choice over audio-options",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "The guest will only be able to select their webcam as an option",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Add a password to make the stream inaccessible to those without the password",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Add the guest to a group-chat room; it will be created automatically if needed.",
"customize-the-room-settings-for-this-guest": "Customize the room settings for this guest",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Enter an HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Mute the Speaker",
"mute-the-mic": "Mute the Mic",
"disable-the-camera": "Disable the Camera",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Show Help Info",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Enter a room name to quick join",
"create-a-secondary-stream": "Create a Secondary Stream",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the help guide",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -286,94 +288,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Create a Room",
"rooms-allow-for": "Rooms allow for group-chat and the tools to manage multiple guests.",
"room-name": "Room Name",
"password-input-field": "Password",
"guests-only-see-director": "The guests can see the director, but not other guests' videos",
"scenes-can-see-director": "The director will be performing as well, appearing in group scenes",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Enter the room's Control Center in the director's role",
"show-tips": "Show me some tips..",
"added-notes": "<u><i>Important Tips:</i><br><br></u><li>Disabling video sharing between guests will improve performance</li><li>Invite only guests to the room that you trust.</li><li>The \"Recording\" option is considered experimental.</li>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join the room as a Participant, rather than a director",
"back": "Back",
"add-your-camera": "Add your Camera",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"waiting-for-camera": "Waiting for Camera to Load",
"privacy-disabled": "Privacy warning: The director will be able to remotely change your camera, microphone, and URL while this page is open, if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": " Video Source ",
"up-to-4k": "4K",
"max-resolution": "Max Resolution",
"balanced": "Balanced",
"smooth-cool": "Smooth and Cool",
"select-audio-source": " Audio Source(s) ",
"no-audio": "No Audio",
"select-output-source": " Audio Output Destination ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br> Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Remote Screenshare",
"select-screen-to-share": "SELECT SCREEN TO SHARE",
"audio-sources": "Audio Sources",
"application-audio-capture": "",
"1080p-screen-capture-guide": "",
"create-reusable-invite": "Create Reusable Invite",
"here-you-can-pre-generate": "Here you can pre-generate a reusable Browser Source link and a related guest invite link.",
"generate-invite-link": "GENERATE THE INVITE LINK",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Unlock Video Bitrate (20mbps)",
"force-vp9-video-codec": "Force VP9 Video Codec",
"enable-stereo-and-pro": "Enable Stereo and Pro HD Audio",
"video-resolution": "Video Resolution: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Hide Screenshare Option",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Add a password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Add the guest to a room:",
"invite-group-chat-type": "This room guest can:",
"can-see-and-hear": "Can see and hear the group chat",
"can-hear-only": "Can only hear the group chat",
"cant-see-or-hear": "Cannot hear or see the group chat",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h2>What is VDO.Ninja</h2><br><li>100% <b>free</b>; no downloads; no personal data collection; no sign-in</li><li>Bring live video from your smartphone, remote computer, or friends directly into OBS or other studio software.</li><li>We use cutting edge Peer-to-Peer forwarding technology that offers privacy and ultra-low latency</li><br><li>Youtube video <i class=\"lab la-youtube\"></i><a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Youtube video demoing VDO.Ninja\">Demoing it here</a></li><br><h3> 🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3> ",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "<b>Welcome. This is the director's control-room for the group-chat.</b><br><br>You can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.<br><br>A group room can handle normally around 6 to 20 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room",
@@ -425,15 +339,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Unlock Video Bitrate (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Mute",
"send-direct-chat": "Message",
"close": "close",
@@ -464,10 +376,36 @@
"force-keyframe": "Rainbow Puke Fix",
"advanced-audio-settings": "Audio Settings",
"advanced-camera-settings": "Video Settings",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Highlight",
"video-source": " Video Source ",
"max-resolution": "Max Resolution",
"balanced": "Balanced",
"smooth-cool": "Smooth and Cool",
"select-audio-source": " Audio Source(s) ",
"select-output-source": " Audio Output Destination ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Open in new Tab",
"copy-to-clipboard": "Copy to Clipboard",
"edit-url": "Edit URL manually",
@@ -524,9 +462,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Create a Room",
"rooms-allow-for": "Rooms allow for group-chat and the tools to manage multiple guests.",
"room-name": "Room Name",
"password-input-field": "Password",
"guests-only-see-director": "The guests can see the director, but not other guests' videos",
"scenes-can-see-director": "The director will be performing as well, appearing in group scenes",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Enter the room's Control Center in the director's role",
"show-tips": "Show me some tips..",
"added-notes": "<u><i>Important Tips:</i><br><br></u><li>Disabling video sharing between guests will improve performance</li><li>Invite only guests to the room that you trust.</li><li>The \"Recording\" option is considered experimental.</li>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join the room as a Participant, rather than a director",
"back": "Back",
"add-your-camera": "Add your Camera",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely change your camera, microphone, and URL while this page is open, if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "No Audio",
"add-a-password": " Add a Password",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br> Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Remote Screenshare",
"select-screen-to-share": "SELECT SCREEN TO SHARE",
"audio-sources": "Audio Sources",
"application-audio-capture": "",
"1080p-screen-capture-guide": "",
"create-reusable-invite": "Create Reusable Invite",
"here-you-can-pre-generate": "Here you can pre-generate a reusable Browser Source link and a related guest invite link.",
"generate-invite-link": "GENERATE THE INVITE LINK",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Force VP9 Video Codec",
"enable-stereo-and-pro": "Enable Stereo and Pro HD Audio",
"video-resolution": "Video Resolution: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Hide Screenshare Option",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Add a password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Add the guest to a room:",
"invite-group-chat-type": "This room guest can:",
"can-see-and-hear": "Can see and hear the group chat",
"can-hear-only": "Can only hear the group chat",
"cant-see-or-hear": "Cannot hear or see the group chat",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h2>What is VDO.Ninja</h2><br><li>100% <b>free</b>; no downloads; no personal data collection; no sign-in</li><li>Bring live video from your smartphone, remote computer, or friends directly into OBS or other studio software.</li><li>We use cutting edge Peer-to-Peer forwarding technology that offers privacy and ultra-low latency</li><br><li>Youtube video <i class=\"lab la-youtube\"></i><a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Youtube video demoing VDO.Ninja\">Demoing it here</a></li><br><h3> 🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3> ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Waiting for Camera to Load",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -558,19 +567,12 @@
"please-select-option-to-join": "Please select an option to join.",
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START"
"more": "More"
},
"placeholders": {
"join-by-room-name-here": "Join by Room Name here",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Enter chat message to send here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -578,7 +580,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here"
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here"
},
"miscellaneous": {
"new-display-name": "Enter a new Display Name for this stream",
@@ -679,6 +687,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "加入房间",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "将记住该房间,并在下次访问时提示您是否希望再次加载该房管的房间",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "将您的流记录到磁盘",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "取消房管的视频/音频",
"submit-any-error-logs": "提交任何错误日志",
"show-help-contact-info": "Show help contact info",
"language-options": "语言选项",
"add-to-calendar": "添加到日历",
"add-group-chat-to-obs": "添加群聊",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "对于大型群组房间,此选项可以大大减少远程客人的负担",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "房管将在场景中可见,就像参与者自己一样。",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "如果选中,房管可以像客人一样添加到场景中。否则,房管将永远不会出现在场景中。",
"which-video-codec-would-you-want-used-by-default-": "默认情况下,您希望使用哪个视频编解码器?",
"you-ll-enter-as-the-room-s-director": "您将以房间房管的身份进入",
"add-your-camera-to-obs": "添加您的相机",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "提示:按住 CTRL命令选择多个",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "实验性的",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "使用此技巧提高性能和质量",
"adjust-the-amount-of-effect-applied": "调整应用的效果量",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "远程屏幕共享",
"create-reusable-invite": "创建可重复使用的邀请",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "适用于 1080p60 游戏,前提是您的计算机和上传能满足要求",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "以增加 CPU 编码负载为代价实现更好的视频压缩和质量",
"disable-digital-audio-effects-and-increase-audio-bitrate": "禁用数字音频效果并提高音频比特率",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "客人可以选择要应用的数字视频效果。",
"the-guest-will-not-have-a-choice-over-audio-options": "客人在音频选项上没有选择权",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "客人只能选择他们的网络摄像头作为选项",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "对 URL 进行编码,使客人更难修改设置。",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "添加密码以使没有密码的用户无法访问流",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "将客人添加到群聊房间;如果需要,它将自动创建。",
"customize-the-room-settings-for-this-guest": "自定义此客人的房间设置",
"more-options": "更多选项",
"transfer-any-file": "传输任何文件",
"enter-an-https-url": "输入 HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube 视频演示如何做到这一点",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "邀请客人或相机源发布到群组房间",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "如果禁用,受邀客人将无法看到或听到房间内的任何人。",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "使用单声道音频播放视频",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "让视频适合各自的区域,即使这意味着裁剪一点",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "让视频与专为垂直视频设计的尺寸对齐",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "将此流 ID 复制到剪贴板",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "单击此处编辑此流的标签。更改将传播到此流的所有查看者",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "到处都让这位客人静音",
"disable-video-preview": "禁用视频预览",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "从组 6 中添加/删除",
"remote-audio-settings": "远程音频设置",
"advanced-video-settings": "高级视频设置",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "这将向远程客人请求更改权限",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "视频/音频流的直接独播视图,没有别的。它的音频可以从这里远程控制",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "这位客人举手了。单击此按钮可清除通知。",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "添加到场景 2",
"activate-or-reload-this-video-device-": "激活或重新加载此视频设备。",
"tip-hold-ctrl-command-to-select-multiple": "提示:按住 CTRL命令选择多个",
"experimental": "实验性的",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "使用此技巧提高性能和质量",
"adjust-the-amount-of-effect-applied": "调整应用的效果量",
"the-solo-view-link-of-the-director-s-video-": "房管视频的独播观看链接。",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "隐藏此窗口",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "添加群聊",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "对于大型群组房间,此选项可以大大减少远程客人的负担",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "房管将在场景中可见,就像参与者自己一样。",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "如果选中,房管可以像客人一样添加到场景中。否则,房管将永远不会出现在场景中。",
"which-video-codec-would-you-want-used-by-default-": "默认情况下,您希望使用哪个视频编解码器?",
"you-ll-enter-as-the-room-s-director": "您将以房间房管的身份进入",
"add-your-camera-to-obs": "添加您的相机",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "远程屏幕共享",
"create-reusable-invite": "创建可重复使用的邀请",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "适用于 1080p60 游戏,前提是您的计算机和上传能满足要求",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "以增加 CPU 编码负载为代价实现更好的视频压缩和质量",
"disable-digital-audio-effects-and-increase-audio-bitrate": "禁用数字音频效果并提高音频比特率",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "客人可以选择要应用的数字视频效果。",
"the-guest-will-not-have-a-choice-over-audio-options": "客人在音频选项上没有选择权",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "客人只能选择他们的网络摄像头作为选项",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "对 URL 进行编码,使客人更难修改设置。",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "添加密码以使没有密码的用户无法访问流",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "将客人添加到群聊房间;如果需要,它将自动创建。",
"customize-the-room-settings-for-this-guest": "自定义此客人的房间设置",
"more-options": "更多选项",
"transfer-any-file": "传输任何文件",
"enter-an-https-url": "输入 HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "使扬声器静音",
"mute-the-mic": "使麦克风静音",
"disable-the-camera": "禁用摄像头",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "显示帮助信息",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "将此流 ID 复制到剪贴板",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "单击此处编辑此流的标签。更改将传播到此流的所有查看者",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "这将向远程客人请求更改权限",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "视频/音频流的直接独播视图,没有别的。它的音频可以从这里远程控制",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "这位客人举手了。单击此按钮可清除通知。",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "输入要快速加入的房间名称",
"create-a-secondary-stream": "创建第二个流",
"share-a-website-as-an-embedded-iframe": "将网站共享为嵌入式 iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "跳转到文档",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "创建房间",
"rooms-allow-for": "房间允许群聊和管理多个客人的工具。",
"room-name": "房间名称",
"password-input-field": "密码",
"guests-only-see-director": "客人只能看到房管的视频",
"scenes-can-see-director": "房管也将是一名参与者",
"default-codec-select": "首选视频编解码器: ",
"enter-the-rooms-control": "进入房间的控制中心",
"show-tips": "告诉我一些提示..",
"added-notes": "\n<u>\n<i>重要提示:</i><br><br>\n</u>\n<li>禁用客人之间的视频共享将提高性能</li>\n<li>只邀请客人到你信任的房间。</li>\n<li>“录制”选项被认为是实验性的。</li>\n<li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>高级 URL 参数可用于自定义房间。</u></a></li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>\n</u></a>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "以参与者身份加入房间",
"back": "后退",
"add-your-camera": "添加您的相机",
"ask-for-permissions": "允许访问相机/麦克风",
"waiting-for-camera": "等待相机加载",
"privacy-disabled": "隐私警告:如果您继续,房管将能够远程访问您的摄像头和麦克风。",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": " 视频源 ",
"up-to-4k": "4K",
"max-resolution": "最大分辨率",
"balanced": "均衡",
"smooth-cool": "流畅顺滑",
"select-audio-source": " 音频源 ",
"no-audio": "无音频",
"select-output-source": " 音频输出目的地: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " 数字视频效果: ",
"no-effects-applied": "未应用任何效果",
"blurred-background": "模糊背景",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "数字绿幕",
"virtual-background": "虚拟背景",
"face-mesh": "面网格(缓慢加载)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "匿名面具",
"dog-face": "狗耳朵和鼻子",
"face-tracker": "Face tracker",
"add-a-password": " 添加密码:",
"use-chrome-instead": "请考虑使用基于 Chromium 的浏览器。<br>\n Safari 更容易出现音频问题",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "远程屏幕共享",
"select-screen-to-share": "选择要分享的屏幕",
"audio-sources": "音频源",
"application-audio-capture": "有关特定于应用程序的音频捕获,<a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">请参见此处</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "创建可重复使用的邀请",
"here-you-can-pre-generate": "在这里你可以预先生成一个可重用的浏览器源链接和相关的客人邀请链接。",
"generate-invite-link": "生成邀请链接",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "解锁视频比特率 (20mbps)",
"force-vp9-video-codec": "强制 VP9 视频编解码器",
"enable-stereo-and-pro": "启用立体声和专业高清音频",
"video-resolution": "视频分辨率: ",
"general-paramaters": "User options",
"allow-effects-invite": "允许使用视频效果",
"hide-mic-selection": "强制默认麦克风",
"hide-screen-share": "隐藏屏幕共享选项",
"obfuscate_url": "混淆邀请 URL",
"add-a-password-to-stream": " 添加密码:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " 将客人添加到房间:",
"invite-group-chat-type": "这个房间的客人可以:",
"can-see-and-hear": "可以看到和听到群聊",
"can-hear-only": "只能听到群聊",
"cant-see-or-hear": "无法听到或看到群聊",
"share-local-video-file": "流媒体文件",
"select-the-video-files-to-share": "选择要共享的视频文件",
"share-website-iframe": "分享网站",
"enter-the-website-URL-you-wish-to-share": "输入要共享的 URL 网站。",
"run-a-speed-test": "运行速度测试",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "浏览指南",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"hide-the-links": " 链接(客人邀请和场景)",
"click-here-for-help": "单击此处获取快速概览和帮助",
"welcome-to-control-room": "\n<b>欢迎光临。这是房管的控制室,用于群聊</b><br><br>\n您可以使用聊天室与朋友进行群聊。共享蓝色链接以邀请将自动加入聊天的客人。\n<br><br>\n根据许多因素包括 CPU 和房间内所有客人的可用带宽,一个群聊房间通常可以处理大约 6 到 20 位客人\n",
@@ -440,15 +354,13 @@
"fade-videos-in": "淡入淡出视频",
"animate-mixing": "动画合成",
"add-margin": "添加视频边框",
"unlock-video-bitrate": "解锁视频比特率 (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "强制单声道音频",
"fill-video-space": "裁剪视频以适合",
"vertical-aspect-ratio": "竖屏视频模式",
"learn-more-about-params": "了解有关 URL 参数的详细信息,请访问 ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Ztišit",
"send-direct-chat": "信息",
"close": "关闭",
@@ -479,10 +391,36 @@
"force-keyframe": "像素拖尾修复",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> 音频设置",
"advanced-camera-settings": "<i class=\"las la-sliders-h\"></i> 视频设置",
"user-raised-hand": "手放下",
"remove-from-queue": "Activate Guest",
"record-director-local": " 录制",
"solo-video-director": "Highlight",
"video-source": " 视频源 ",
"max-resolution": "最大分辨率",
"balanced": "均衡",
"smooth-cool": "流畅顺滑",
"select-audio-source": " 音频源 ",
"select-output-source": " 音频输出目的地: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " 数字视频效果: ",
"no-effects-applied": "未应用任何效果",
"blurred-background": "模糊背景",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "数字绿幕",
"virtual-background": "虚拟背景",
"face-mesh": "面网格(缓慢加载)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "匿名面具",
"dog-face": "狗耳朵和鼻子",
"face-tracker": "Face tracker",
"close-settings": "关闭设置",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "在新标签页中打开",
"copy-to-clipboard": "复制到剪贴板",
"edit-url": "手动编辑 URL",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "添加到 Outlook 日历",
"add-to-yahoo-calendar": "添加到雅虎日历",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "手放下",
"remove-from-queue": "Activate Guest",
"add-group-chat": "创建房间",
"rooms-allow-for": "房间允许群聊和管理多个客人的工具。",
"room-name": "房间名称",
"password-input-field": "密码",
"guests-only-see-director": "客人只能看到房管的视频",
"scenes-can-see-director": "房管也将是一名参与者",
"default-codec-select": "首选视频编解码器: ",
"enter-the-rooms-control": "进入房间的控制中心",
"show-tips": "告诉我一些提示..",
"added-notes": "\n<u>\n<i>重要提示:</i><br><br>\n</u>\n<li>禁用客人之间的视频共享将提高性能</li>\n<li>只邀请客人到你信任的房间。</li>\n<li>“录制”选项被认为是实验性的。</li>\n<li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>高级 URL 参数可用于自定义房间。</u></a></li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>\n</u></a>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "以参与者身份加入房间",
"back": "后退",
"add-your-camera": "添加您的相机",
"ask-for-permissions": "允许访问相机/麦克风",
"start": "START",
"privacy-disabled": "隐私警告:如果您继续,房管将能够远程访问您的摄像头和麦克风。",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "无音频",
"add-a-password": " 添加密码:",
"use-chrome-instead": "请考虑使用基于 Chromium 的浏览器。<br>\n Safari 更容易出现音频问题",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "远程屏幕共享",
"select-screen-to-share": "选择要分享的屏幕",
"audio-sources": "音频源",
"application-audio-capture": "有关特定于应用程序的音频捕获,<a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">请参见此处</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "创建可重复使用的邀请",
"here-you-can-pre-generate": "在这里你可以预先生成一个可重用的浏览器源链接和相关的客人邀请链接。",
"generate-invite-link": "生成邀请链接",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "强制 VP9 视频编解码器",
"enable-stereo-and-pro": "启用立体声和专业高清音频",
"video-resolution": "视频分辨率: ",
"general-paramaters": "User options",
"allow-effects-invite": "允许使用视频效果",
"hide-mic-selection": "强制默认麦克风",
"hide-screen-share": "隐藏屏幕共享选项",
"obfuscate_url": "混淆邀请 URL",
"add-a-password-to-stream": " 添加密码:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " 将客人添加到房间:",
"invite-group-chat-type": "这个房间的客人可以:",
"can-see-and-hear": "可以看到和听到群聊",
"can-hear-only": "只能听到群聊",
"cant-see-or-hear": "无法听到或看到群聊",
"share-local-video-file": "流媒体文件",
"select-the-video-files-to-share": "选择要共享的视频文件",
"share-website-iframe": "分享网站",
"enter-the-website-URL-you-wish-to-share": "输入要共享的 URL 网站。",
"run-a-speed-test": "运行速度测试",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "浏览指南",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "等待相机加载",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "加入房间",
@@ -574,7 +583,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START",
"note-share-audio": "\n\t<b>poznámka</b>: Nezapomeňte zakliknout \"Sdílet audio\" v Chromu.<br>(Firefox nepodporuje sdílení zvuku.)",
"record": "Nahrávat",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -588,12 +596,6 @@
"join-by-room-name-here": "在此用房间名称加入",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "在此处输入要发送的聊天消息",
"enter-a-room-name-here": "在此处输入房间名称",
"optional-room-password-here": "可选房间密码在这里",
"optional": "可选的",
"give-this-media-source-a-name-optional-": "为该媒体源命名 (可选的)",
"add-an-optional-password": "添加可选密码",
"enter-room-name-here": "在此处输入房间名称",
"enter-your-message-here": "在此输入您的消息",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -601,7 +603,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "在此输入房间名称",
"enter-the-room-password-here": "在此输入房间密码"
"enter-the-room-password-here": "在此输入房间密码",
"enter-a-room-name-here": "在此处输入房间名称",
"optional-room-password-here": "可选房间密码在这里",
"optional": "可选的",
"give-this-media-source-a-name-optional-": "为该媒体源命名 (可选的)",
"add-an-optional-password": "添加可选密码",
"enter-room-name-here": "在此处输入房间名称"
},
"miscellaneous": {
"new-display-name": "为流输入新的显示名称",
@@ -702,6 +710,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Join room",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Record your stream to disk",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Cancel the Director's Video/Audio",
"submit-any-error-logs": "Submit any error logs",
"show-help-contact-info": "Show help contact info",
"language-options": "Jazyková nastavení",
"add-to-calendar": "Add to Calendar",
"add-group-chat-to-obs": "Add Group Chat to OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera to OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "tip: Podržte Ctrl (command), abyste vybrali více najednou",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare into OBS",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideální pro 1080p60 gaming, pokud vám na to vystačí prostředky počítače",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Lepší komprese videa a kvalita za cenu vyšší zátěže procesoru",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Zakázat digitální zvukové efekty a zvýšit přenosovou rychlost zvuku",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Host nebude mít na výběr z možností zvuku",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "The guest will only be able to select their webcam as an option",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Přidejte heslo, aby nebyl stream přístupný pro ty, kteří nemají heslo",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Přidejte hosta do skupinové chatovací místnosti; v případě potřeby se vytvoří automaticky.",
"customize-the-room-settings-for-this-guest": "Upravte nastavení místnosti pro tohoto hosta",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Zadejte URL s HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube Video demoing how to do this",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Invite a guest or camera source to publish into the group room",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "If disabled, the invited guest will not be able to see or hear anyone in the room.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Mute this guest everywhere",
"disable-video-preview": "Vypnout náhled videa",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Remote Audio Settings",
"advanced-video-settings": "Advanced Video Settings",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Add to Scene 2",
"activate-or-reload-this-video-device-": "Activate or Reload this video device.",
"tip-hold-ctrl-command-to-select-multiple": "tip: Podržte Ctrl (command), abyste vybrali více najednou",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Add Group Chat to OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera to OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare into OBS",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideální pro 1080p60 gaming, pokud vám na to vystačí prostředky počítače",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Lepší komprese videa a kvalita za cenu vyšší zátěže procesoru",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Zakázat digitální zvukové efekty a zvýšit přenosovou rychlost zvuku",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Host nebude mít na výběr z možností zvuku",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "The guest will only be able to select their webcam as an option",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Přidejte heslo, aby nebyl stream přístupný pro ty, kteří nemají heslo",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Přidejte hosta do skupinové chatovací místnosti; v případě potřeby se vytvoří automaticky.",
"customize-the-room-settings-for-this-guest": "Upravte nastavení místnosti pro tohoto hosta",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Zadejte URL s HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Vypnout mikrofon mluvčího",
"mute-the-mic": "Vypnout mikrofon",
"disable-the-camera": "Vypnout kameru",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Zobrazit menu pomoci",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Enter a room name to quick join",
"create-a-secondary-stream": "Create a Secondary Stream",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Přidat skupinový chat OBS",
"rooms-allow-for": "Místnosti umožnůjí jednoduchý skupinový chat a pokročilou správu více streamů zároveň.",
"room-name": "Jméno místnost",
"password-input-field": "Heslo",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Vstoupit do administrace místnosti",
"show-tips": "Zobrazit tipy..",
"added-notes": "\n<u><i>Poznámka:</i></u>\n<li>Kdokoliv se může připojit, když zná jméno místnosti</li>\n<li>Není doporučeno mít v místnosti víc než 4 lidi kvůli náročnosti na Váš počítač, ale za zkoušku nic nedáte.</li>\n<li>iOS zařízení jsou omezena pouze na dva účastníky. Toto omezení je způsobeno Applem.</li>\n<li> \"Nahrávat\" je nová a EXPERIMENTÁLNÍ funkce.</li>\n<li>Musíte \"Přidat\" zdroj video do \"Skupinová scéna\" aby se tu zobrazil.</li>\n<li>Tady je nové \"vylepšený fullscreen\" tlačítko přidané pro hostitele.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Zpět",
"add-your-camera": "Přidat kameru do OBS",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"waiting-for-camera": "Čekám na načtení kamery",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Video zdroj",
"up-to-4k": "4K",
"max-resolution": "MAX rozlišení",
"balanced": "Vyrovnaný",
"smooth-cool": "Super a Cool",
"select-audio-source": "Zvolit zdroj Audia",
"no-audio": "Žádné Audio",
"select-output-source": " Audio výstup: \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Vzdálené sdílení obrazovky do OBS",
"select-screen-to-share": "VYBRAT OBRAZOVKU KE SDÍLENÍ",
"audio-sources": "Audio zdroje",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Vytvořit pozvánku na více použití",
"here-you-can-pre-generate": "Zde můžete generovat linky do OBS i pozvánky na více použití.",
"generate-invite-link": "GENEROVAT POZVÁNKU",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Rozvolnit limit Video Bitrate (20mbps)",
"force-vp9-video-codec": "Vynutit VP9 Video Codec (méně artefaktů)",
"enable-stereo-and-pro": "Povolit Stereo a Pro HD Audio",
"video-resolution": "Rozlišení videa: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Vynutit výchozí mikrofon",
"hide-screen-share": "Nezobrazovat možnost sdílet obrazovku",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Přidat heslo:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Přidat hosta do místosti:",
"invite-group-chat-type": "Člen této místnosti může:",
"can-see-and-hear": "Slyšet a vidět ostatní členy",
"can-hear-only": "Pouze slyšet ostatní členy",
"cant-see-or-hear": "Neslyšet ani nevidět ostatní členy",
"share-local-video-file": "Streamovat mediální soubor",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Sdílet webovou stránku",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Zapnout speed test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Procházejte průvodce",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Co je VDO.Ninja</h2><br>\n<li>100% <b>zdarma</b>; bez stahování; žádné osobní data; bez přihlašování</li>\n<li>Sdílejte video ze smartphonu, laptopu, počítače či svých kamarádů přímo do OBSka</li>\n<li>Používáme nejmodernější Peer-to-Peer forwarding technologii, která zaručuje bezpečnost a minimální lag</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Demo</a> </li>\n<h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "Welcome. This is the control-room for the group-chat. There are different things you can use this room for:<br><br>\t<li>You can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.</li>\t<li>A group room can handle around 4 to 30 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room.</li>\t<li>Solo-views of each video are offered under videos as they load. These can be used within an OBS Browser Source.</li>\t<li>You can use the auto-mixing Group Scene, the green link, to auto arrange multiple videos for you in OBS.</li>\t<li>You can use this control room to record isolated video or audio streams, but it is an experimental feature still.</li>\t<li>Videos in the Director's room will be of low quality on purpose; to save bandwidth/CPU</li>\t<li>Guest's in the room will see each other's videos at a very limited quality to conserve bandwidth/CPU.</li>\t<li>OBS will see a guest's video in high-quality; the default video bitrate is 2500kbps.</li>\t<br>\tAs guests join, their videos will appear below. You can bring their video streams into OBS as solo-scenes or you can add them to the Group Scene.\t<br>The Group Scene auto-mixes videos that have been added to the group scene. Please note that the Auto-Mixer requires guests be manually added to it for them to appear in it; they are not added automatically.<br><br>Apple mobile devices, such as iPhones and iPads, do not fully support Video Group Chat. This is a hardware constraint.<br><br>\tFor advanced options and parameters, <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Guides-and-How-to's#urlparameters\">see the Wiki.</a>",
@@ -440,15 +354,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Rozvolnit limit Video Bitrate (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Ztišit",
"send-direct-chat": "Chatovat",
"close": "close",
@@ -479,10 +391,36 @@
"force-keyframe": "Rainbow Puke",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Audio Settings",
"advanced-camera-settings": "<i class=\"las la-cog\"></i> Pokročilé",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Highlight",
"video-source": "Video zdroj",
"max-resolution": "MAX rozlišení",
"balanced": "Vyrovnaný",
"smooth-cool": "Super a Cool",
"select-audio-source": "Zvolit zdroj Audia",
"select-output-source": " Audio výstup: \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Otevřít v nové záložce",
"copy-to-clipboard": "Kopírovat do schránky",
"edit-url": "Edit URL manually",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Přidat skupinový chat OBS",
"rooms-allow-for": "Místnosti umožnůjí jednoduchý skupinový chat a pokročilou správu více streamů zároveň.",
"room-name": "Jméno místnost",
"password-input-field": "Heslo",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Vstoupit do administrace místnosti",
"show-tips": "Zobrazit tipy..",
"added-notes": "\n<u><i>Poznámka:</i></u>\n<li>Kdokoliv se může připojit, když zná jméno místnosti</li>\n<li>Není doporučeno mít v místnosti víc než 4 lidi kvůli náročnosti na Váš počítač, ale za zkoušku nic nedáte.</li>\n<li>iOS zařízení jsou omezena pouze na dva účastníky. Toto omezení je způsobeno Applem.</li>\n<li> \"Nahrávat\" je nová a EXPERIMENTÁLNÍ funkce.</li>\n<li>Musíte \"Přidat\" zdroj video do \"Skupinová scéna\" aby se tu zobrazil.</li>\n<li>Tady je nové \"vylepšený fullscreen\" tlačítko přidané pro hostitele.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Zpět",
"add-your-camera": "Přidat kameru do OBS",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Žádné Audio",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Vzdálené sdílení obrazovky do OBS",
"select-screen-to-share": "VYBRAT OBRAZOVKU KE SDÍLENÍ",
"audio-sources": "Audio zdroje",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Vytvořit pozvánku na více použití",
"here-you-can-pre-generate": "Zde můžete generovat linky do OBS i pozvánky na více použití.",
"generate-invite-link": "GENEROVAT POZVÁNKU",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Vynutit VP9 Video Codec (méně artefaktů)",
"enable-stereo-and-pro": "Povolit Stereo a Pro HD Audio",
"video-resolution": "Rozlišení videa: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Vynutit výchozí mikrofon",
"hide-screen-share": "Nezobrazovat možnost sdílet obrazovku",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Přidat heslo:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Přidat hosta do místosti:",
"invite-group-chat-type": "Člen této místnosti může:",
"can-see-and-hear": "Slyšet a vidět ostatní členy",
"can-hear-only": "Pouze slyšet ostatní členy",
"cant-see-or-hear": "Neslyšet ani nevidět ostatní členy",
"share-local-video-file": "Streamovat mediální soubor",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Sdílet webovou stránku",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Zapnout speed test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Procházejte průvodce",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Co je VDO.Ninja</h2><br>\n<li>100% <b>zdarma</b>; bez stahování; žádné osobní data; bez přihlašování</li>\n<li>Sdílejte video ze smartphonu, laptopu, počítače či svých kamarádů přímo do OBSka</li>\n<li>Používáme nejmodernější Peer-to-Peer forwarding technologii, která zaručuje bezpečnost a minimální lag</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Demo</a> </li>\n<h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Čekám na načtení kamery",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -574,7 +583,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START",
"note-share-audio": "\n\t<b>poznámka</b>: Nezapomeňte zakliknout \"Sdílet audio\" v Chromu.<br>(Firefox nepodporuje sdílení zvuku.)",
"record": "Nahrávat",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -588,12 +596,6 @@
"join-by-room-name-here": "Připojit se s názvem místnosti zde",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Sem zadejte vaši zprávu",
"enter-a-room-name-here": "Sem zadejte název místnosti",
"optional-room-password-here": "Volitelné heslo místnosti zde",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Pojmenujte tento zdroj médií (volitelné)",
"add-an-optional-password": "Přidat volitelné heslo",
"enter-room-name-here": "Sem zadejte název místnosti",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -601,7 +603,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here"
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Sem zadejte název místnosti",
"optional-room-password-here": "Volitelné heslo místnosti zde",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Pojmenujte tento zdroj médií (volitelné)",
"add-an-optional-password": "Přidat volitelné heslo",
"enter-room-name-here": "Sem zadejte název místnosti"
},
"miscellaneous": {
"new-display-name": "Enter a new Display Name for this stream",
@@ -702,6 +710,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Raum betreten",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Eigenen Stream lokal aufnehmen",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Gastgeber-Audio/Video aus",
"submit-any-error-logs": "Fehlerprotokoll schicken",
"show-help-contact-info": "Show help contact info",
"language-options": "Sprachoptionen",
"add-to-calendar": "Add to Calendar",
"add-group-chat-to-obs": "Video-Gruppenchat zu OBS hinzufügen",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Bei größeren Gruppen kann diese Option die Systemlast bei den Gästen deutlich reduzieren",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Welchen Codec soll standardmäßig verwendet werden?",
"you-ll-enter-as-the-room-s-director": "Sie werden dem Gruppenchat als Gastgeber beitreten",
"add-your-camera-to-obs": "Kamera zu OBS hinzufügen",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "Tipp: Für Mehrfachauswahl halten Sie CTRL (Mac: command) gedrückt",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Bildschirm zu OBS hinzufügen",
"create-reusable-invite": "Wiederverwendbare Einladung erzeugen",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal für Gaming mit 1080p60, falls Ihr Computer und Anschluss ausreichen",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Höhere Videokompression und bessere Bildqualität, benötigt mehr CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Audiofilter aus, höhere Audiobitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Gäste können Audio-Optionen nicht ändern",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Gäste können nur ihre Webcam auswählen",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "URL verschleiern. Das macht es für Gäste schwieriger, Einstellungen zu ändern.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Passwort hinzufügen. Dem Stream kann ohne Passwort nicht beigetreten werden",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Gast zu Gruppenraum hinzufügen. Falls nötig, wird der Raum automatisch erzeugt.",
"customize-the-room-settings-for-this-guest": "Raum-Einstellungen für diesen Gast anpassen",
"more-options": "Weitere Einstelllungen",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Geben Sie eine URL mit HTTPS ein",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Erklär-Video",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Gast oder Kamera zum Video-Gruppenchat einladen",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "If disabled, the invited guest will not be able to see or hear anyone in the room.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Gast überall stummschalten",
"disable-video-preview": "Videovorschau aus",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Remote Audio-Einstellungen",
"advanced-video-settings": "Erweiterte Video-Einstellungen",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Add to Scene 2",
"activate-or-reload-this-video-device-": "Kamera aktivieren oder neu laden.",
"tip-hold-ctrl-command-to-select-multiple": "Tipp: Für Mehrfachauswahl halten Sie CTRL (Mac: command) gedrückt",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Video-Gruppenchat zu OBS hinzufügen",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Bei größeren Gruppen kann diese Option die Systemlast bei den Gästen deutlich reduzieren",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Welchen Codec soll standardmäßig verwendet werden?",
"you-ll-enter-as-the-room-s-director": "Sie werden dem Gruppenchat als Gastgeber beitreten",
"add-your-camera-to-obs": "Kamera zu OBS hinzufügen",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Bildschirm zu OBS hinzufügen",
"create-reusable-invite": "Wiederverwendbare Einladung erzeugen",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal für Gaming mit 1080p60, falls Ihr Computer und Anschluss ausreichen",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Höhere Videokompression und bessere Bildqualität, benötigt mehr CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Audiofilter aus, höhere Audiobitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Gäste können Audio-Optionen nicht ändern",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Gäste können nur ihre Webcam auswählen",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "URL verschleiern. Das macht es für Gäste schwieriger, Einstellungen zu ändern.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Passwort hinzufügen. Dem Stream kann ohne Passwort nicht beigetreten werden",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Gast zu Gruppenraum hinzufügen. Falls nötig, wird der Raum automatisch erzeugt.",
"customize-the-room-settings-for-this-guest": "Raum-Einstellungen für diesen Gast anpassen",
"more-options": "Weitere Einstelllungen",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Geben Sie eine URL mit HTTPS ein",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Audio stumm",
"mute-the-mic": "Mikrofon stumm",
"disable-the-camera": "Kamera aus",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Hilfe anzeigen",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Geben Sie einen Raumnamen ein",
"create-a-secondary-stream": "Create a Secondary Stream",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Gruppenchat hinzufügen",
"rooms-allow-for": "Videochat-Räume erlauben einfachen Gruppen-Chat und die Verwaltung verschiedener Streams.",
"room-name": "Raum",
"password-input-field": "Passwort",
"guests-only-see-director": "Gäste können nur das Gastgeber-Video sehen",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Bevorzugter Video-Codec: ",
"enter-the-rooms-control": "Control Center für diesen Raum betreten",
"show-tips": "Ich möchte Tipps..",
"added-notes": "\n<u><i>Weitere Infos:</i></u>\n<li>Räume können von allen betreten werden, die den Raumnamen wissen. Vermeiden Sie daher zu einfache Namen.</li>\n<li>Je nach Hardwareausstattung können mehr als vier Teilnehmende in einem Raum zu Performance-Problemen führen.</li>\n<li>Aufgrund einer Hardware-Einschränkung können iOS-Devices Video nur mit dem Regisseur/Director teilen.</li>\n<li>Bitte betrachten Sie die \"Aufnehmen\"-Funktion als neu und experimentell. Sie sollten sie vermutlich nicht in Produktivumgebungen einsetzen.</li>\n<li>Damit ein Video-Feed in einer Gruppen-Szene erscheint, müssen Sie ihn zunächst dort hinzufügen.</li>\n<li>Der Gäste-View enthält einen neuen \"fortgeschrittenen Fullscreen\"-Button.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Zurück",
"add-your-camera": "Kamera hinzufügen",
"ask-for-permissions": "Zugriff für Kamera/Mikrofon erlauben",
"waiting-for-camera": "Kamera lädt. Bitte warten.",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Videoquelle",
"up-to-4k": "4K",
"max-resolution": "Höchste Auflösung",
"balanced": "Ausgeglichen",
"smooth-cool": "Smooth und Cool",
"select-audio-source": "Audio-Quellen auswählen",
"no-audio": "Kein Audio",
"select-output-source": " Ausgang für Audio: \n",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Bildschirm teilen",
"select-screen-to-share": "ZU TEILENDEN BILDSCHIRM AUSWÄHLEN",
"audio-sources": "Audioquellen",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Wiederverwendbare Einladung erstellen",
"here-you-can-pre-generate": "Erzeugen Sie einen wiederwendbaren Empfangs-Link und die zugehörigen Einladungslinks für Gäste.",
"generate-invite-link": "EINLADUNGS-LINK ERSTELLEN",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Video-Bitrate auf Maximum (20mbps)",
"force-vp9-video-codec": "VP9 Video- Codec verwenden (weniger Störungen)",
"enable-stereo-and-pro": "Stereo und Pro HD Audio einschalten",
"video-resolution": "Video-Auflösung: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Option zum Bildschirm teilen nicht anzeigen",
"obfuscate_url": "Einladungs-Link verschleiern",
"add-a-password-to-stream": " Passwort hinzufügen:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Gast zu diesem Raum hinzufügen:",
"invite-group-chat-type": "Dieser Gast..",
"can-see-and-hear": "..kann den Gruppen-Chat sehen und hören",
"can-hear-only": "..kann den Gruppen-Chat nur hören",
"cant-see-or-hear": "..kann den Gruppen-chat weder hören noch sehen",
"share-local-video-file": "Mediendatei streamen",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Website teilen",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Speed-Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Was ist VDO.Ninja</h2>\n<br>\n<li>100% <b>kostenlos</b>; keine Downloads; keine persönliche Daten übertragen; keine Anmeldung</li>\n<li>Bring live-Videos von deinem Smartphone, remote Computer, oder Freunden direkt in OBS oder andere Studio Software</li>\n<li>Wir verwenden die neuste Peer-to-Peer forwarding technology die Datenschutz und ultra-low latency bietet</li>\n<br>\n<li>Youtube video \n<i class=\"lab la-youtube\"></i>\n<a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Youtube Video Demo VDO.Ninja\">Demo hier</a>\n</li>\n<br>\n<h3>\n🛠 Für Support, schau in den <a href=\"https://www.reddit.com/r/VDONinja/\">Sub-Reddit <i class=\"lab la-reddit-alien\"></i></a> oder tritt dem <a href=\"https://discord.vdo.ninja/\">Discord bei<i class=\"lab la-discord\"></i></a>. Die <a href=\"https://docs.vdo.ninja/\">Dokumentation ist hier</a> und meine private E-Mail ist <i>steve@seguin.email</i>\n</h3> \n\n",
"hide-the-links": " LINKS (Einladungslinks &amp; Szenen-Links)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "Welcome. This is the control-room for the group-chat. There are different things you can use this room for:<br><br><li>You can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.</li><li>A group room can handle around 4 to 30 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room.</li><li>Solo-views of each video are offered under videos as they load. These can be used within an OBS Browser Source.</li><li>You can use the auto-mixing Group Scene, the green link, to auto arrange multiple videos for you in OBS.</li><li>You can use this control room to record isolated video or audio streams, but it is an experimental feature still.</li><li>Videos in the Director's room will be of low quality on purpose; to save bandwidth/CPU</li><li>Guest's in the room will see each other's videos at a very limited quality to conserve bandwidth/CPU.</li><li>OBS will see a guest's video in high-quality; the default video bitrate is 2500kbps.</li><br>As guests join, their videos will appear below. You can bring their video streams into OBS as solo-scenes or you can add them to the Group Scene.<br>The Group Scene auto-mixes videos that have been added to the group scene. Please note that the Auto-Mixer requires guests be manually added to it for them to appear in it; they are not added automatically.<br><br>Apple mobile devices, such as iPhones and iPads, do not fully support Video Group Chat. This is a hardware constraint.<br><br>For advanced options and parameters, <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Guides-and-How-to's#urlparameters\">see the Wiki.</a>",
@@ -440,15 +354,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Video-Bitrate auf Maximum (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Stummschalten",
"send-direct-chat": "Nachricht",
"close": "close",
@@ -479,10 +391,36 @@
"force-keyframe": "Rainbow Puke",
"advanced-audio-settings": "Audio",
"advanced-camera-settings": "Video",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Markieren",
"video-source": "Videoquelle",
"max-resolution": "Höchste Auflösung",
"balanced": "Ausgeglichen",
"smooth-cool": "Smooth und Cool",
"select-audio-source": "Audio-Quellen auswählen",
"select-output-source": " Ausgang für Audio: \n",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "In neuem Tab öffnen.",
"copy-to-clipboard": "In die Zwischenablage kopieren",
"edit-url": "Edit URL manually",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Gruppenchat hinzufügen",
"rooms-allow-for": "Videochat-Räume erlauben einfachen Gruppen-Chat und die Verwaltung verschiedener Streams.",
"room-name": "Raum",
"password-input-field": "Passwort",
"guests-only-see-director": "Gäste können nur das Gastgeber-Video sehen",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Bevorzugter Video-Codec: ",
"enter-the-rooms-control": "Control Center für diesen Raum betreten",
"show-tips": "Ich möchte Tipps..",
"added-notes": "\n<u><i>Weitere Infos:</i></u>\n<li>Räume können von allen betreten werden, die den Raumnamen wissen. Vermeiden Sie daher zu einfache Namen.</li>\n<li>Je nach Hardwareausstattung können mehr als vier Teilnehmende in einem Raum zu Performance-Problemen führen.</li>\n<li>Aufgrund einer Hardware-Einschränkung können iOS-Devices Video nur mit dem Regisseur/Director teilen.</li>\n<li>Bitte betrachten Sie die \"Aufnehmen\"-Funktion als neu und experimentell. Sie sollten sie vermutlich nicht in Produktivumgebungen einsetzen.</li>\n<li>Damit ein Video-Feed in einer Gruppen-Szene erscheint, müssen Sie ihn zunächst dort hinzufügen.</li>\n<li>Der Gäste-View enthält einen neuen \"fortgeschrittenen Fullscreen\"-Button.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Zurück",
"add-your-camera": "Kamera hinzufügen",
"ask-for-permissions": "Zugriff für Kamera/Mikrofon erlauben",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Kein Audio",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Bildschirm teilen",
"select-screen-to-share": "ZU TEILENDEN BILDSCHIRM AUSWÄHLEN",
"audio-sources": "Audioquellen",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Wiederverwendbare Einladung erstellen",
"here-you-can-pre-generate": "Erzeugen Sie einen wiederwendbaren Empfangs-Link und die zugehörigen Einladungslinks für Gäste.",
"generate-invite-link": "EINLADUNGS-LINK ERSTELLEN",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "VP9 Video- Codec verwenden (weniger Störungen)",
"enable-stereo-and-pro": "Stereo und Pro HD Audio einschalten",
"video-resolution": "Video-Auflösung: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Option zum Bildschirm teilen nicht anzeigen",
"obfuscate_url": "Einladungs-Link verschleiern",
"add-a-password-to-stream": " Passwort hinzufügen:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Gast zu diesem Raum hinzufügen:",
"invite-group-chat-type": "Dieser Gast..",
"can-see-and-hear": "..kann den Gruppen-Chat sehen und hören",
"can-hear-only": "..kann den Gruppen-Chat nur hören",
"cant-see-or-hear": "..kann den Gruppen-chat weder hören noch sehen",
"share-local-video-file": "Mediendatei streamen",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Website teilen",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Speed-Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Was ist VDO.Ninja</h2>\n<br>\n<li>100% <b>kostenlos</b>; keine Downloads; keine persönliche Daten übertragen; keine Anmeldung</li>\n<li>Bring live-Videos von deinem Smartphone, remote Computer, oder Freunden direkt in OBS oder andere Studio Software</li>\n<li>Wir verwenden die neuste Peer-to-Peer forwarding technology die Datenschutz und ultra-low latency bietet</li>\n<br>\n<li>Youtube video \n<i class=\"lab la-youtube\"></i>\n<a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Youtube Video Demo VDO.Ninja\">Demo hier</a>\n</li>\n<br>\n<h3>\n🛠 Für Support, schau in den <a href=\"https://www.reddit.com/r/VDONinja/\">Sub-Reddit <i class=\"lab la-reddit-alien\"></i></a> oder tritt dem <a href=\"https://discord.vdo.ninja/\">Discord bei<i class=\"lab la-discord\"></i></a>. Die <a href=\"https://docs.vdo.ninja/\">Dokumentation ist hier</a> und meine private E-Mail ist <i>steve@seguin.email</i>\n</h3> \n\n",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Kamera lädt. Bitte warten.",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -574,7 +583,6 @@
"guest-toggle": "Gast Umschalten",
"settings": "Einstellungen",
"more": "Mehr",
"start": "START",
"note-share-audio": "\n<b>note</b>: Vergessen Sie nicht, in Chrome \"Audio teilen\" zu klicken.<br>(Firefox unterstütz das Teilen von Audio nicht.)",
"record": "Aufnehmen",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "Raum über Namen betreten",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Message",
"enter-a-room-name-here": "Raumname eingeben",
"optional-room-password-here": "Raum-Passwort (optional)",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Namen für Quelle angeben (optional)",
"add-an-optional-password": "Passwort hinzufügen (optional)",
"enter-room-name-here": "Raumnamen eingeben",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here"
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Raumname eingeben",
"optional-room-password-here": "Raum-Passwort (optional)",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Namen für Quelle angeben (optional)",
"add-an-optional-password": "Passwort hinzufügen (optional)",
"enter-room-name-here": "Raumnamen eingeben"
},
"miscellaneous": {
"new-display-name": "Enter a new Display Name for this stream",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Join room",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Record your stream to disk",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Cancel the Director's Video/Audio",
"submit-any-error-logs": "Submit any error logs",
"show-help-contact-info": "Show help contact info",
"language-options": "Language Options",
"add-to-calendar": "Add to Calendar",
"add-group-chat-to-obs": "Add Group Chat",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "tip: Hold CTRL (command) to select Multiple",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal for 1080p60 gaming, if your computer and upload are up for it",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Better video compression and quality at the cost of increased CPU encoding load",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Disable digital audio-effects and increase audio bitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "The guest will not have a choice over audio-options",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "The guest will only be able to select their webcam as an option",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Add a password to make the stream inaccessible to those without the password",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Add the guest to a group-chat room; it will be created automatically if needed.",
"customize-the-room-settings-for-this-guest": "Customize the room settings for this guest",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Enter an HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube Video demoing how to do this",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Invite a guest or camera source to publish into the group room",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "If disabled, the invited guest will not be able to see or hear anyone in the room.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Mute this guest everywhere",
"disable-video-preview": "Disable Video Preview",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Remote Audio Settings",
"advanced-video-settings": "Advanced Video Settings",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Add to Scene 2",
"activate-or-reload-this-video-device-": "Activate or Reload this video device.",
"tip-hold-ctrl-command-to-select-multiple": "tip: Hold CTRL (command) to select Multiple",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Add Group Chat",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal for 1080p60 gaming, if your computer and upload are up for it",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Better video compression and quality at the cost of increased CPU encoding load",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Disable digital audio-effects and increase audio bitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "The guest will not have a choice over audio-options",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "The guest will only be able to select their webcam as an option",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Add a password to make the stream inaccessible to those without the password",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Add the guest to a group-chat room; it will be created automatically if needed.",
"customize-the-room-settings-for-this-guest": "Customize the room settings for this guest",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Enter an HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Mute the Speaker",
"mute-the-mic": "Mute the Mic",
"disable-the-camera": "Disable the Camera",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Show Help Info",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Enter a room name to quick join",
"create-a-secondary-stream": "Create a Secondary Stream",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the help guide",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -286,94 +288,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Create a Room",
"rooms-allow-for": "Rooms allow for group-chat and the tools to manage multiple guests.",
"room-name": "Room Name",
"password-input-field": "Password",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Enter the Room's Control Center",
"show-tips": "Show me some tips..",
"added-notes": "\n<u>\n<i>Important Tips:</i><br>\n</u>\n<li>Disabling video sharing between guests will improve performance</li>\n<li>Invite only guests to the room that you trust.</li>\n<li>The \"Recording\" option is considered experimental.</li>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Back",
"add-your-camera": "Add your Camera",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"waiting-for-camera": "Waiting for Camera to Load",
"privacy-disabled": "Privacy warning: The director will be able to remotely change your camera, microphone, and URL while this page is open, if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": " Video Source ",
"up-to-4k": "4K",
"max-resolution": "Max Resolution",
"balanced": "Balanced",
"smooth-cool": "Smooth and Cool",
"select-audio-source": " Audio Source(s) ",
"no-audio": "No Audio",
"select-output-source": " Audio Output Destination: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Remote Screenshare",
"select-screen-to-share": "SELECT SCREEN TO SHARE",
"audio-sources": "Audio Sources",
"application-audio-capture": "",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Create Reusable Invite",
"here-you-can-pre-generate": "Here you can pre-generate a reusable Browser Source link and a related guest invite link.",
"generate-invite-link": "GENERATE THE INVITE LINK",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Unlock Video Bitrate (20mbps)",
"force-vp9-video-codec": "Force VP9 Video Codec",
"enable-stereo-and-pro": "Enable Stereo and Pro HD Audio",
"video-resolution": "Video Resolution: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Hide Screenshare Option",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Add a password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Add the guest to a room:",
"invite-group-chat-type": "This room guest can:",
"can-see-and-hear": "Can see and hear the group chat",
"can-hear-only": "Can only hear the group chat",
"cant-see-or-hear": "Cannot hear or see the group chat",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>What is VDO.Ninja</h2>\n<br>\n<li>100% <b>free</b>; no downloads; no personal data collection; no sign-in</li>\n<li>Bring live video from your smartphone, remote computer, or friends directly into OBS or other studio software.</li>\n<li>We use cutting edge Peer-to-Peer forwarding technology that offers privacy and ultra-low latency</li>\n<br>\n<li>Youtube video \n<i class=\"lab la-youtube\"></i>\n<a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Youtube video demoing VDO.Ninja\">Demoing it here</a>\n</li>\n<br><h3>\n 🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3> \n\n",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "\n<b>Welcome. This is the director's control-room for the group-chat.</b><br><br>\nYou can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.\n<br><br>\nA group room can handle normally around 6 to 20 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room\n",
@@ -425,15 +339,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Unlock Video Bitrate (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Mute",
"send-direct-chat": "Message",
"close": "close",
@@ -464,10 +376,36 @@
"force-keyframe": "Rainbow Puke Fix",
"advanced-audio-settings": "Audio",
"advanced-camera-settings": "Video",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Highlight",
"video-source": " Video Source ",
"max-resolution": "Max Resolution",
"balanced": "Balanced",
"smooth-cool": "Smooth and Cool",
"select-audio-source": " Audio Source(s) ",
"select-output-source": " Audio Output Destination: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Open in new Tab",
"copy-to-clipboard": "Copy to Clipboard",
"edit-url": "Edit URL manually",
@@ -524,9 +462,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Create a Room",
"rooms-allow-for": "Rooms allow for group-chat and the tools to manage multiple guests.",
"room-name": "Room Name",
"password-input-field": "Password",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Enter the Room's Control Center",
"show-tips": "Show me some tips..",
"added-notes": "\n<u>\n<i>Important Tips:</i><br>\n</u>\n<li>Disabling video sharing between guests will improve performance</li>\n<li>Invite only guests to the room that you trust.</li>\n<li>The \"Recording\" option is considered experimental.</li>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Back",
"add-your-camera": "Add your Camera",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely change your camera, microphone, and URL while this page is open, if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "No Audio",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Remote Screenshare",
"select-screen-to-share": "SELECT SCREEN TO SHARE",
"audio-sources": "Audio Sources",
"application-audio-capture": "",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Create Reusable Invite",
"here-you-can-pre-generate": "Here you can pre-generate a reusable Browser Source link and a related guest invite link.",
"generate-invite-link": "GENERATE THE INVITE LINK",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Force VP9 Video Codec",
"enable-stereo-and-pro": "Enable Stereo and Pro HD Audio",
"video-resolution": "Video Resolution: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Hide Screenshare Option",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Add a password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Add the guest to a room:",
"invite-group-chat-type": "This room guest can:",
"can-see-and-hear": "Can see and hear the group chat",
"can-hear-only": "Can only hear the group chat",
"cant-see-or-hear": "Cannot hear or see the group chat",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>What is VDO.Ninja</h2>\n<br>\n<li>100% <b>free</b>; no downloads; no personal data collection; no sign-in</li>\n<li>Bring live video from your smartphone, remote computer, or friends directly into OBS or other studio software.</li>\n<li>We use cutting edge Peer-to-Peer forwarding technology that offers privacy and ultra-low latency</li>\n<br>\n<li>Youtube video \n<i class=\"lab la-youtube\"></i>\n<a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Youtube video demoing VDO.Ninja\">Demoing it here</a>\n</li>\n<br><h3>\n 🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3> \n\n",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Waiting for Camera to Load",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -558,19 +567,12 @@
"please-select-option-to-join": "Please select an option to join.",
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START"
"more": "More"
},
"placeholders": {
"join-by-room-name-here": "Join by Room Name here",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Enter chat message to send here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -578,7 +580,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here"
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here"
},
"miscellaneous": {
"new-display-name": "Enter a new Display Name for this stream",
@@ -679,6 +687,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Unirse sala",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Se recordara la sala, y se le indicará la proxima vez que la visite si desea volver a cargar la sala de este director",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Grabar tu stream en el disco",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Colgar el Video/Audio del Director",
"submit-any-error-logs": "Enviar cualquier registro de error",
"show-help-contact-info": "Show help contact info",
"language-options": "Opciones de Idioma",
"add-to-calendar": "Añadir al Calendario",
"add-group-chat-to-obs": "Añadir Chat Grupal",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Para salas de grupos grandes, esta opción reduce la carga en los clientes remotos de manera substancial",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "El director será visible en las escenas",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Si lo marcas, el director se puede agregar a las escenas como si fuera un invitado apareciendo.",
"which-video-codec-would-you-want-used-by-default-": "¿Qué codec de video quieres se utilice por defecto?",
"you-ll-enter-as-the-room-s-director": "Entrarás como director de sala",
"add-your-camera-to-obs": "Añadir Cámara",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "truco: Mantén pulsado CTRL (o CMD) para selección Múltiple",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Mejore el rendimiento y la calidad con este consejo",
"adjust-the-amount-of-effect-applied": "Ajustar la cantidad de efecto aplicado",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Compartir pantalla",
"create-reusable-invite": "Crear invitación reutilizable",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal para juegos 1080p60, si tu PC y conexión lo permiten",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Mejor compresión y calidad del video pese al incremento de carga en la CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Deshabilitar los efectos de sonido digital e incrementar el bitrate de audio",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "El invitado podrá seleccionar efectos de video para aplicar",
"the-guest-will-not-have-a-choice-over-audio-options": "El invitado no tendrá opciones de audio a escoger",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "El invitado sólo podrá seleccionar su cámara web como opción",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Codifique la URL para que sea más difícil para un invitado cambiar la configuración",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Añade una contraseña para evitar el acceso a la sala",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Añade al invitado a una sala de chat grupal; se creará automáticamente en caso necesario",
"customize-the-room-settings-for-this-guest": "Personaliza la configuración de sala para este invitado",
"more-options": "Más Opciones",
"transfer-any-file": "Enviar un archivo",
"enter-an-https-url": "Introduce una URL HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Video de Youtube que muestra como hacerlo",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Invite una fuente de cámara o a alguien para publicar en la sala de grupos",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "Si esta deshabilitado, el invitado no podra ver ni escuchar a nadie en la sala",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Reproducción del video en el canal de audio Mono",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Haga que los videos se ajusten a su respectiva area, incluso si eso significa recortarle un poco",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Haga que los videos se alineen con el tamaño de video vertical",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copie este ID de transmisión en el portapapeles",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Haga click aquí para editar la etiqueta de esta transmisión, los cambios se propagarásn a todos los espectadores de esta transmisión",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Silenciar a este en invitado en todas las vistas y escenas",
"disable-video-preview": "Deshabilitar Previsualización",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Agregar o eliminar del grupo 6",
"remote-audio-settings": "Configuración Avanzada de Audio",
"advanced-video-settings": "Configuración Avanzada de Video",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Esto le pedirá permiso al invitado para cambiar",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Una vista individual directa de la transmisión de video o audio sin nada más. Su audio se puede controlar de forma remota desde aquí. ",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Este invitado levantó la mano. Haga clic aquí para borrar la notificación",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Añadir a Escena 2",
"activate-or-reload-this-video-device-": "Activar o recargar esta fuente de video",
"tip-hold-ctrl-command-to-select-multiple": "truco: Mantén pulsado CTRL (o CMD) para selección Múltiple",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Mejore el rendimiento y la calidad con este consejo",
"adjust-the-amount-of-effect-applied": "Ajustar la cantidad de efecto aplicado",
"the-solo-view-link-of-the-director-s-video-": "Enlace de al video del Director",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Ocultar esta ventana",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Añadir Chat Grupal",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Para salas de grupos grandes, esta opción reduce la carga en los clientes remotos de manera substancial",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "El director será visible en las escenas",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Si lo marcas, el director se puede agregar a las escenas como si fuera un invitado apareciendo.",
"which-video-codec-would-you-want-used-by-default-": "¿Qué codec de video quieres se utilice por defecto?",
"you-ll-enter-as-the-room-s-director": "Entrarás como director de sala",
"add-your-camera-to-obs": "Añadir Cámara",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Compartir pantalla",
"create-reusable-invite": "Crear invitación reutilizable",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal para juegos 1080p60, si tu PC y conexión lo permiten",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Mejor compresión y calidad del video pese al incremento de carga en la CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Deshabilitar los efectos de sonido digital e incrementar el bitrate de audio",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "El invitado podrá seleccionar efectos de video para aplicar",
"the-guest-will-not-have-a-choice-over-audio-options": "El invitado no tendrá opciones de audio a escoger",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "El invitado sólo podrá seleccionar su cámara web como opción",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Codifique la URL para que sea más difícil para un invitado cambiar la configuración",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Añade una contraseña para evitar el acceso a la sala",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Añade al invitado a una sala de chat grupal; se creará automáticamente en caso necesario",
"customize-the-room-settings-for-this-guest": "Personaliza la configuración de sala para este invitado",
"more-options": "Más Opciones",
"transfer-any-file": "Enviar un archivo",
"enter-an-https-url": "Introduce una URL HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Silenciar",
"mute-the-mic": "Desactivar Micrófono",
"disable-the-camera": "Desactivar Cámara",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Mostrar Ayuda",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copie este ID de transmisión en el portapapeles",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Haga click aquí para editar la etiqueta de esta transmisión, los cambios se propagarásn a todos los espectadores de esta transmisión",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Esto le pedirá permiso al invitado para cambiar",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Una vista individual directa de la transmisión de video o audio sin nada más. Su audio se puede controlar de forma remota desde aquí. ",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Este invitado levantó la mano. Haga clic aquí para borrar la notificación",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Introduce un nombre de sala para entrar",
"create-a-secondary-stream": "Crear un Stream Secundario",
"share-a-website-as-an-embedded-iframe": "Compartir un sitio Web como un IFrame integrado",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Saltar a la Documentación",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Agregar grupo de chat a OBS",
"rooms-allow-for": "Las salas permiten un chat grupal simplificado y la administración avanzada de múltiples transmisiones a la vez",
"room-name": "Nombre de la sala",
"password-input-field": "Contraseña",
"guests-only-see-director": "Los invitados solo podran ver el video del Director",
"scenes-can-see-director": "El Director tambien se mostrara en escena",
"default-codec-select": "Códec de Video preferido: ",
"enter-the-rooms-control": "Entrar al panel de control",
"show-tips": "Muéstrame algunos consejos",
"added-notes": "\n<u>\n\t<i>Consejos Importantes:</i><br><br>\n</u>\n<li>Deshabilitar el video compartido entre invitados mejora el rendimiento</li>\n<li>Invite solo a personas de confianza</li>\n<li>La opción de \"Grabar\" se considera experimental.</li>\n<li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>Los parametros avanzados de URL</u></a> están disponibles para personalizar las salas.</li>\n\t",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Unirse a la sala solamente como participante",
"back": "Atrás",
"add-your-camera": "Agregar tu cámara a OBS",
"ask-for-permissions": "Permitir el acceso a Cámara y Microfono",
"waiting-for-camera": "Esperando a que se cargue la cámara",
"privacy-disabled": "Advertencia de Privacidad: El Director podra acceder a la Cámara y al Microfono si continua",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Fuente de video",
"up-to-4k": "4K",
"max-resolution": "Max. Resolución",
"balanced": "Equilibrado",
"smooth-cool": "Fluido",
"select-audio-source": "Seleccionar fuentes de audio",
"no-audio": "Sin Audio",
"select-output-source": " Destino de la salida de audio: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Efectos Video Digital: ",
"no-effects-applied": "Sin efectos aplicados",
"blurred-background": "Fondo Difuminado",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Pantalla Verde Digital",
"virtual-background": "Fondo Virtual",
"face-mesh": "Mapeado de la cara (Carga lento)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Mascara de Anonymous",
"dog-face": "Orejas y nariz de perro",
"face-tracker": "Face tracker",
"add-a-password": " Añadir una Contraseña:",
"use-chrome-instead": "Recomendamos utilizar un navegador basado en Chromium.<br>\n Safari puede sufrir problemas de audio",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Compartir pantalla",
"select-screen-to-share": "SELECCIONAR PANTALLA PARA COMPARTIR",
"audio-sources": "Fuentes de Audio",
"application-audio-capture": "Para capturar el audio especifico de una aplicación, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">vea aquí</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Crear una invitación reutilizable",
"here-you-can-pre-generate": "Aquí puedes generar un enlace reutilizable como fuente del navegador e invitados.",
"generate-invite-link": "GENERAR EL LINK DE INVITACIÓN",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Desbloquear Video Bitrate (20mbps)",
"force-vp9-video-codec": "Forzar VP9 Video Codec (menos artefactos)",
"enable-stereo-and-pro": "Habilitar Estéreo y Pro Audio HD",
"video-resolution": "Resolución de vídeo: ",
"general-paramaters": "User options",
"allow-effects-invite": "Permitir el uso de efectos de video",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Ocultar opción compartir pantalla",
"obfuscate_url": "Obfuscar la URL Invitación",
"add-a-password-to-stream": " Añadir contraseña:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Añadir invitado a una sala:",
"invite-group-chat-type": "Este invitado de la sala puede:",
"can-see-and-hear": "Puede ver y oir el chat de grupo",
"can-hear-only": "Sólo puede oir el chat de grupo",
"cant-see-or-hear": "No puede oir ni ver el chat de grupo",
"share-local-video-file": "Stream de Fichero Multimedia",
"select-the-video-files-to-share": "SELECCIONA EL FICHERO DE VIDEO A COMPARTIR",
"share-website-iframe": "Comparte Sitio Web",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Ejecuta un prueba de velocidad",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Explorar las Guías",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"hide-the-links": " ENLACES (INVITACIONES &amp; ESCENAS)",
"click-here-for-help": "Pulsar aquí para un resumen y ayuda",
"welcome-to-control-room": "\n<b>Bienvenido. Esta es la sala de control del director para el grupo de chat.</b><br><br>\nPuedes organizar un grupo de chat con amigos utilizando una sala. Comparte el enlace azul con los invitados para que puedan entrar directamente al chat.\n<br><br>\n<font style=\"color:red\">Limitaciones conocidas de las Salas:</font><br>\n<li>Una sala grupal puede gestionar hasta unos 30 invitados, dependiendo de varios factores, incluyendo CPU y ancho de banda disponible en todos los invitados en la sala.</li>\n\n<li>El Video aparece en baja calidad a propósito en los invitados y director; esto es para reducir los recursos de ancho de banda y CPU.</li>",
@@ -440,15 +354,13 @@
"fade-videos-in": "Fundir entrada de video",
"animate-mixing": "Animar",
"add-margin": "Añadir margenes para los videos",
"unlock-video-bitrate": "Desbloquear Video Bitrate (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Forzar audio mono",
"fill-video-space": "Cortar el video para ajustarlo",
"vertical-aspect-ratio": "Modo de video Vertical",
"learn-more-about-params": "Aprende sobre los parámetros URL en ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Stummschalten",
"send-direct-chat": "Mensaje",
"close": "Cerrar",
@@ -479,10 +391,36 @@
"force-keyframe": "Reparar Arcoiris",
"advanced-audio-settings": "Audio",
"advanced-camera-settings": "Video",
"user-raised-hand": "Levantar la mano",
"remove-from-queue": "Activate Guest",
"record-director-local": " Grabar",
"solo-video-director": "destacar",
"video-source": "Fuente de video",
"max-resolution": "Max. Resolución",
"balanced": "Equilibrado",
"smooth-cool": "Fluido",
"select-audio-source": "Seleccionar fuentes de audio",
"select-output-source": " Destino de la salida de audio: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Efectos Video Digital: ",
"no-effects-applied": "Sin efectos aplicados",
"blurred-background": "Fondo Difuminado",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Pantalla Verde Digital",
"virtual-background": "Fondo Virtual",
"face-mesh": "Mapeado de la cara (Carga lento)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Mascara de Anonymous",
"dog-face": "Orejas y nariz de perro",
"face-tracker": "Face tracker",
"close-settings": "Cerrar Configuraciónes",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Abrir en una pestaña nueva",
"copy-to-clipboard": "Copiar al portapapeles",
"edit-url": "Editar URL manualmente",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Añadir a Calendario Outlook",
"add-to-yahoo-calendar": "Añadir a Calendario Yahoo",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Levantar la mano",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Agregar grupo de chat a OBS",
"rooms-allow-for": "Las salas permiten un chat grupal simplificado y la administración avanzada de múltiples transmisiones a la vez",
"room-name": "Nombre de la sala",
"password-input-field": "Contraseña",
"guests-only-see-director": "Los invitados solo podran ver el video del Director",
"scenes-can-see-director": "El Director tambien se mostrara en escena",
"default-codec-select": "Códec de Video preferido: ",
"enter-the-rooms-control": "Entrar al panel de control",
"show-tips": "Muéstrame algunos consejos",
"added-notes": "\n<u>\n\t<i>Consejos Importantes:</i><br><br>\n</u>\n<li>Deshabilitar el video compartido entre invitados mejora el rendimiento</li>\n<li>Invite solo a personas de confianza</li>\n<li>La opción de \"Grabar\" se considera experimental.</li>\n<li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>Los parametros avanzados de URL</u></a> están disponibles para personalizar las salas.</li>\n\t",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Unirse a la sala solamente como participante",
"back": "Atrás",
"add-your-camera": "Agregar tu cámara a OBS",
"ask-for-permissions": "Permitir el acceso a Cámara y Microfono",
"start": "START",
"privacy-disabled": "Advertencia de Privacidad: El Director podra acceder a la Cámara y al Microfono si continua",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Sin Audio",
"add-a-password": " Añadir una Contraseña:",
"use-chrome-instead": "Recomendamos utilizar un navegador basado en Chromium.<br>\n Safari puede sufrir problemas de audio",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Compartir pantalla",
"select-screen-to-share": "SELECCIONAR PANTALLA PARA COMPARTIR",
"audio-sources": "Fuentes de Audio",
"application-audio-capture": "Para capturar el audio especifico de una aplicación, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">vea aquí</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Crear una invitación reutilizable",
"here-you-can-pre-generate": "Aquí puedes generar un enlace reutilizable como fuente del navegador e invitados.",
"generate-invite-link": "GENERAR EL LINK DE INVITACIÓN",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Forzar VP9 Video Codec (menos artefactos)",
"enable-stereo-and-pro": "Habilitar Estéreo y Pro Audio HD",
"video-resolution": "Resolución de vídeo: ",
"general-paramaters": "User options",
"allow-effects-invite": "Permitir el uso de efectos de video",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Ocultar opción compartir pantalla",
"obfuscate_url": "Obfuscar la URL Invitación",
"add-a-password-to-stream": " Añadir contraseña:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Añadir invitado a una sala:",
"invite-group-chat-type": "Este invitado de la sala puede:",
"can-see-and-hear": "Puede ver y oir el chat de grupo",
"can-hear-only": "Sólo puede oir el chat de grupo",
"cant-see-or-hear": "No puede oir ni ver el chat de grupo",
"share-local-video-file": "Stream de Fichero Multimedia",
"select-the-video-files-to-share": "SELECCIONA EL FICHERO DE VIDEO A COMPARTIR",
"share-website-iframe": "Comparte Sitio Web",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Ejecuta un prueba de velocidad",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Explorar las Guías",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Esperando a que se cargue la cámara",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Unirse a la sala",
@@ -574,7 +583,6 @@
"guest-toggle": "Invitado alterna",
"settings": "Configuración",
"more": "Más",
"start": "START",
"note-share-audio": "\n<b>note</b>: Vergessen Sie nicht, in Chrome \"Audio teilen\" zu klicken.<br>(Firefox unterstütz das Teilen von Audio nicht.)",
"record": "Aufnehmen",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "Unirse por Nombre de Sala aquí",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Introduce el mensaje de chat a enviar aquí",
"enter-a-room-name-here": "Introduce un Nombre de Sala aquí",
"optional-room-password-here": "Contraseña de sala aquí (opcional)",
"optional": "Opcional",
"give-this-media-source-a-name-optional-": "Dar a la fuente de medios un nombre (opcional)",
"add-an-optional-password": "Añadir una contraseña opcional",
"enter-room-name-here": "Introduce el nombre de Sala aquí",
"enter-your-message-here": "Introduce tu mensaje aquí",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Introduce el nombre de Sala aquí",
"enter-the-room-password-here": "Introduce la contraseña de la sala aquí"
"enter-the-room-password-here": "Introduce la contraseña de la sala aquí",
"enter-a-room-name-here": "Introduce un Nombre de Sala aquí",
"optional-room-password-here": "Contraseña de sala aquí (opcional)",
"optional": "Opcional",
"give-this-media-source-a-name-optional-": "Dar a la fuente de medios un nombre (opcional)",
"add-an-optional-password": "Añadir una contraseña opcional",
"enter-room-name-here": "Introduce el nombre de Sala aquí"
},
"miscellaneous": {
"new-display-name": "Elije un nuevo nombre para mostrar en esta transmisión",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Batu gelara",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Diskoan irarri Stream-a",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Zuzendariaren bideoa/audioa itzali",
"submit-any-error-logs": "Bidali edozein akats erregistro",
"show-help-contact-info": "Show help contact info",
"language-options": "Hizkuntza aukerak",
"add-to-calendar": "Gehitu egutegira",
"add-group-chat-to-obs": "Gehitu talde txata",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Parte hartzaile asko daudean bezeroen karga gutxitu dezake",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "Zuzendaria ikusgai egongo da eszenetan, antzeztuko baluke bezala.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Zein bideo-kodek lehenetsi nahi duzu?",
"you-ll-enter-as-the-room-s-director": "Gelako zuzendari bezala sartuko zara",
"add-your-camera-to-obs": "Gehitu kamera",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "aholkua: sakatu CTRL (edo CMD) hainbat aukeratzeko",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Errendimendua eta kalitatea hobetzeko aholkua",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Partekatu pantaila",
"create-reusable-invite": "Sortu gonbidapen berrerabilgarria",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "1080p60 kalitatean jokatzeko prestatua, zure ordenagailuak eta konexioak onartzen badute",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Bideo konpresio eta kalitate hobea, nahiz eta CPU-aren lan karga handitu",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Audioaren bitratea handitu eta soinu digitalen efektuak desgaitu",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Gonbidatuak ezingo du audio ezaugarririk hautatu",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Gonbidatuak bere kameraren ezaugarriak soilik hautatu ditzake",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "URL-a kodetu gonbidatuak ezaugarriak aldatzea zailtzeko.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Pasahitza dutenak bakarrik sartu ahalko dira zuzenekora.",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Gonbidatua talde batera gehitu; automatikoki sortuko da beharrezkoa bada.",
"customize-the-room-settings-for-this-guest": "Gelaren ezaugarriak kudeatu gonbidatuarentzat",
"more-options": "Aukera gehiago",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Sartu HTTPS helbidea",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Hau nola egiten den jakiteko Youtubeko bideoa",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Gehitu taldeko gelara gonbidatu kamara edo kamera iturri berria",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "Desgaitu ezkero, gonbidatuak ezingo du gelan audio edo bideorik ikusi.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Ikusi bideoa kanal mono audioarekin",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Bideoak dagozkien eremura egokitu, nahiz eta apur bat moztea esan nahi duen",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Bideo bertikaletarako diseinatutako tamainarekin lerrokatu",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Kopiatu Stream ID-a arbelean",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Hemen klik eginez streamaren izena aldatu. Aldaketak streameneko erabiltzaileei jakinaraziko zaizkie",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Isildu erabiltzaile hau leku guztietan",
"disable-video-preview": "Itzali bideo aurrebista",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Urruneko audio ezaugarriak",
"advanced-video-settings": "Bideo ezaugarri aurreratuak",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Honek urruneko gonbidatuari aldatzeko baimena eskatuko dio",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Bideo/audio streamaren bakarkako ikuspegi zuzena beste ezer gabe. Bertako audioa urrunetik kontrola daiteke",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Gonbidatu honek eskua altxatu du. Egin klik hemen jakinarazpena garbitzeko.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Gehitu 2.eszenara",
"activate-or-reload-this-video-device-": "Bideo gailua aktibatu edo birkargatu.",
"tip-hold-ctrl-command-to-select-multiple": "aholkua: sakatu CTRL (edo CMD) hainbat aukeratzeko",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Errendimendua eta kalitatea hobetzeko aholkua",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Ezkutatu leiho hau",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Gehitu talde txata",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Parte hartzaile asko daudean bezeroen karga gutxitu dezake",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "Zuzendaria ikusgai egongo da eszenetan, antzeztuko baluke bezala.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Zein bideo-kodek lehenetsi nahi duzu?",
"you-ll-enter-as-the-room-s-director": "Gelako zuzendari bezala sartuko zara",
"add-your-camera-to-obs": "Gehitu kamera",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Partekatu pantaila",
"create-reusable-invite": "Sortu gonbidapen berrerabilgarria",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "1080p60 kalitatean jokatzeko prestatua, zure ordenagailuak eta konexioak onartzen badute",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Bideo konpresio eta kalitate hobea, nahiz eta CPU-aren lan karga handitu",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Audioaren bitratea handitu eta soinu digitalen efektuak desgaitu",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Gonbidatuak ezingo du audio ezaugarririk hautatu",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Gonbidatuak bere kameraren ezaugarriak soilik hautatu ditzake",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "URL-a kodetu gonbidatuak ezaugarriak aldatzea zailtzeko.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Pasahitza dutenak bakarrik sartu ahalko dira zuzenekora.",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Gonbidatua talde batera gehitu; automatikoki sortuko da beharrezkoa bada.",
"customize-the-room-settings-for-this-guest": "Gelaren ezaugarriak kudeatu gonbidatuarentzat",
"more-options": "Aukera gehiago",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Sartu HTTPS helbidea",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Isildu hizlaria",
"mute-the-mic": "Isildu mikrofonoa",
"disable-the-camera": "Itzali kamera",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Laguntza informazioa",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Kopiatu Stream ID-a arbelean",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Hemen klik eginez streamaren izena aldatu. Aldaketak streameneko erabiltzaileei jakinaraziko zaizkie",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Honek urruneko gonbidatuari aldatzeko baimena eskatuko dio",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Bideo/audio streamaren bakarkako ikuspegi zuzena beste ezer gabe. Bertako audioa urrunetik kontrola daiteke",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Gonbidatu honek eskua altxatu du. Egin klik hemen jakinarazpena garbitzeko.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Hasteko gelari izena jarri",
"create-a-secondary-stream": "Sortu bigarren Stream-a",
"share-a-website-as-an-embedded-iframe": "Partekatu webgunea txertatutako iFRAME moduan",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Sortu gela",
"rooms-allow-for": "Gelek txata eta gonbidatuak kudeatzeko tresnak eskaintzen dituzte.",
"room-name": "Gelaren izena",
"password-input-field": "Pasahitza",
"guests-only-see-director": "Gonbidatuek zuzendariaren bideoa ikusi dezakete soilik",
"scenes-can-see-director": "Zuzendariak ere parte hartuko du",
"default-codec-select": "Hobetsitako audio-kodeka",
"enter-the-rooms-control": "Sartu gelaren kontrol-panelera",
"show-tips": "Erakutsi aholku batzuk..",
"added-notes": "\n<u>\n\t<i>Aholku garrantzitsuak:</i><br><br>\n</u>\n<li>Parte-hartzaileen artean bideoa ez partekatzeak emanaldiaren kalitatea hobetzen du.</li>\n<li>Gonbidatu soilik ezagutzen dituzun pertsonak.</li>\n<li>\"Grabaketa\" aukera esperimentala da oraingoz.</li>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Atzera",
"add-your-camera": "Gehitu kamera",
"ask-for-permissions": "Baimendu sarbidea Kamera/Mikrofonoa",
"waiting-for-camera": "Kamera kargatzeko zain",
"privacy-disabled": "Pribatutasun oharra: jarraitzen baduzu, zuzendariak zure kamara eta mikrofonoa urrunetik kontrolatu ahalko ditu.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": " Bideo iturria ",
"up-to-4k": "4K",
"max-resolution": "Erresoluzio maximoa",
"balanced": "Orekatua",
"smooth-cool": "Goxo",
"select-audio-source": " Audio iturriak ",
"no-audio": "Audiorik EZ",
"select-output-source": " Audio irteeraren helbidea: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Bideo efektu digitalak: ",
"no-effects-applied": "Efekturik ez gehitua",
"blurred-background": "Atzealde lausotua",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Pantaila digital berdea",
"virtual-background": "Atzealde birtuala",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Txakur belarriak eta sudurra",
"face-tracker": "Face tracker",
"add-a-password": "Ezarri Pasahitza:",
"use-chrome-instead": "Chomiumen oinarritutako nabigatzaileak gomendatzen ditugu.<br>\n Safarik audio arazoak eman ditzake",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Partekatu pantaila",
"select-screen-to-share": "AUKERATU PARTEKATZEKO PANTAILA",
"audio-sources": "Audio Iturriak",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Sortu gonbidapen berrerabilgarria",
"here-you-can-pre-generate": "Hemen gonbidapen helbideak aldez aurretik sortu ditzakezu.",
"generate-invite-link": "GONBIDAPEN HELBIDEA SORTU",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Desblokeatu bideoaren bitrate-a (20mbps)",
"force-vp9-video-codec": "Behartu VP9 bideo-kodeka",
"enable-stereo-and-pro": "Gaitu estereo eta pro HD audioa",
"video-resolution": "Bideo erresoluzioa: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Behartu lehenetsitako mikrofonoa",
"hide-screen-share": "Ezkutatu pantaila partekatzeko aukera",
"obfuscate_url": "Itsutu gonbidapen helbidea",
"add-a-password-to-stream": "Ezarri pasahitza:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Gehitu gonbidatuak gela honetara:",
"invite-group-chat-type": "Gela honetako gonbidatuak daukate:",
"can-see-and-hear": "Taldearen txata ikusi eta entzun",
"can-hear-only": "Taldeko txata entzun bakarrik",
"cant-see-or-hear": "Ezin du Taldeko txata ikusi ezta entzun",
"share-local-video-file": "Partekatu multimedia fitxategia",
"select-the-video-files-to-share": "AUKERATU PARTEKATZEKO BIDEO FITXATEGIAK",
"share-website-iframe": "Partekatu web orrialdea",
"enter-the-website-URL-you-wish-to-share": "Sartu partekatzeko web orrialdearen helbidea.",
"run-a-speed-test": "Neurtu konexio abiadura",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Irakurri gidak",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"hide-the-links": " ESTEKA (GONBIDAPENAK &amp; ESZENAK)",
"click-here-for-help": "Hemen klik egin laburpen azkarra ikusteko eta laguntza izateko",
"welcome-to-control-room": "\n<b>Ongi etorri. Hau da talde berriketarako zuzendariaren kontrol gela.</b><br><br>\nLagunekin talde berriketak egin ditzakezu gela bat erabiliz. Partekatu esteka urdina txatera automatikoki sartuko diren gonbidatuentzat.\n<br><br>\n<font style=\"color:red\">Talde gelek dituzten mugak:</font><br>\n<li>Talde gela batek 30 gonbidatu inguru har ditzake, faktore ugariren arabera, besteak beste, CPU eta gelako gonbidatu guztien banda zabalera kontuan hartuz. 7 lagun inguru baino gehiago elkartzeko, ziurrenik nahiago duzu <a href=\"https://www.youtube.com/watch?v=bpRa8-UYCGc\" title=\"Youtube Video demoing how to do this\">\ndesgaitu bideoen partekatzea gonbidatuen artean</a>. Using &amp;broadcast, &amp;roombitrate=0 or &amp;bideoen aukerak dira hemen.</li>\n\n<li>Bideoak kalitate baxukoak izango dira nahita gonbidatuentzat eta zuzendarientzat; banda zabalera eta CPU baliabideak aurrezteko. Hala ere, kalitate handikoa izango da OBS barruan.</li>\n\n<li>Eszenen egoera, esaterako, eszena batean aktibo dauden bideoak galtzen dira zuzendariak kontrol gela edo eszena berrezartzen duenean.</li>\n<br>\nNota gehigarriak:<br><br>\n<li>Gonbidatutako bideo bakoitzaren ikustaldietarako estekak bideoen azpian ikusten dira kargatu ahala. Hauek OBS iturrien arakatzailean erabil daitezke.</li>\n<li>Nahasteko taldeko eszenak, esteka berdeak, erabil ditzakezu automatikoki antolatzeko bideoak OBSn.</li>\n<li>Kontrol gela hau bideo edo audio stream isolatuak grabatzeko erabil dezakezu, baina oraindik ezaugarri esperimentala da.</li>\n<li>Gonbidatu bat gela batetik bestera mugitzen baduzu, ez dute jakingo zein gelara aldatu diren.</li>\n<li>OBSk gonbidatuen bideoa kalitate handian ikusiko du; bideo bit tasa lehenetsia 2500 kbps da. Bit tasa altuagoak ezartzeak mugimendua hobetuko du.</li>\n<li>VP8 bideo kodek lehenetsia izan ohi da, baina erabiltzen duen &amp;codec=vp9 or &amp;codec=h264 OBS-en URLak hondatutako bideo-arazoak murrizten lagun dezake.</li>\n<li>&amp;stereo=2 can be added to guests to turn off audio effects, such as echo cancellation and noise-reduction.</li>\n<li>https://invite.cam gonbidatuei emandako gonbidapen esteka baten URL parametroak ezkutatzen lagun dezakeen doako zerbitzua da.</li>\n<li>Adding &amp;showonly=SOME_OBS_VIRTUALCAM gonbidatuentzako gonbidapen estekek bideo bakarra ikusteko aukera ematen die gonbidatuei; hau, adibidez, OBS Kamera Birtualaren irteera izan daiteke</li>\n<br>\n\nURL aukera eta parametro aurreratuetarako, <a href=\"https://docs.vdo.ninja/advanced-settings\">Wikian ikusi.</a>\n\t",
@@ -440,15 +354,13 @@
"fade-videos-in": "Lausotu bideoak",
"animate-mixing": "Animate mixing",
"add-margin": "Jarri marjinak bideoei",
"unlock-video-bitrate": "Desblokeatu bideoaren bitrate-a (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Behartu mono audioa",
"fill-video-space": "Moztu bideoa egokitzeko",
"vertical-aspect-ratio": "Bideo bertikal modua",
"learn-more-about-params": "URL parametroez gehiago ikasi hemen ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "ミュート",
"send-direct-chat": "Mezua",
"close": "itxi",
@@ -479,10 +391,36 @@
"force-keyframe": "Ostadarra konpondu",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Audio ezaugarriak",
"advanced-camera-settings": "<i class=\"las la-sliders-h\"></i> Bideo ezaugarriak",
"user-raised-hand": "Jaitsi eskua",
"remove-from-queue": "Activate Guest",
"record-director-local": " Grabazioa",
"solo-video-director": "Highlight",
"video-source": " Bideo iturria ",
"max-resolution": "Erresoluzio maximoa",
"balanced": "Orekatua",
"smooth-cool": "Goxo",
"select-audio-source": " Audio iturriak ",
"select-output-source": " Audio irteeraren helbidea: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Bideo efektu digitalak: ",
"no-effects-applied": "Efekturik ez gehitua",
"blurred-background": "Atzealde lausotua",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Pantaila digital berdea",
"virtual-background": "Atzealde birtuala",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Txakur belarriak eta sudurra",
"face-tracker": "Face tracker",
"close-settings": "Itxi ezarpenak",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Ireki fitxa berrian",
"copy-to-clipboard": "Kopiatu arbelean",
"edit-url": "Aldatu URLa",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Gehitu Outlook egutegian",
"add-to-yahoo-calendar": "Gehitu Yahoo egutegian",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Jaitsi eskua",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Sortu gela",
"rooms-allow-for": "Gelek txata eta gonbidatuak kudeatzeko tresnak eskaintzen dituzte.",
"room-name": "Gelaren izena",
"password-input-field": "Pasahitza",
"guests-only-see-director": "Gonbidatuek zuzendariaren bideoa ikusi dezakete soilik",
"scenes-can-see-director": "Zuzendariak ere parte hartuko du",
"default-codec-select": "Hobetsitako audio-kodeka",
"enter-the-rooms-control": "Sartu gelaren kontrol-panelera",
"show-tips": "Erakutsi aholku batzuk..",
"added-notes": "\n<u>\n\t<i>Aholku garrantzitsuak:</i><br><br>\n</u>\n<li>Parte-hartzaileen artean bideoa ez partekatzeak emanaldiaren kalitatea hobetzen du.</li>\n<li>Gonbidatu soilik ezagutzen dituzun pertsonak.</li>\n<li>\"Grabaketa\" aukera esperimentala da oraingoz.</li>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Atzera",
"add-your-camera": "Gehitu kamera",
"ask-for-permissions": "Baimendu sarbidea Kamera/Mikrofonoa",
"start": "START",
"privacy-disabled": "Pribatutasun oharra: jarraitzen baduzu, zuzendariak zure kamara eta mikrofonoa urrunetik kontrolatu ahalko ditu.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Audiorik EZ",
"add-a-password": "Ezarri Pasahitza:",
"use-chrome-instead": "Chomiumen oinarritutako nabigatzaileak gomendatzen ditugu.<br>\n Safarik audio arazoak eman ditzake",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Partekatu pantaila",
"select-screen-to-share": "AUKERATU PARTEKATZEKO PANTAILA",
"audio-sources": "Audio Iturriak",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Sortu gonbidapen berrerabilgarria",
"here-you-can-pre-generate": "Hemen gonbidapen helbideak aldez aurretik sortu ditzakezu.",
"generate-invite-link": "GONBIDAPEN HELBIDEA SORTU",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Behartu VP9 bideo-kodeka",
"enable-stereo-and-pro": "Gaitu estereo eta pro HD audioa",
"video-resolution": "Bideo erresoluzioa: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Behartu lehenetsitako mikrofonoa",
"hide-screen-share": "Ezkutatu pantaila partekatzeko aukera",
"obfuscate_url": "Itsutu gonbidapen helbidea",
"add-a-password-to-stream": "Ezarri pasahitza:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Gehitu gonbidatuak gela honetara:",
"invite-group-chat-type": "Gela honetako gonbidatuak daukate:",
"can-see-and-hear": "Taldearen txata ikusi eta entzun",
"can-hear-only": "Taldeko txata entzun bakarrik",
"cant-see-or-hear": "Ezin du Taldeko txata ikusi ezta entzun",
"share-local-video-file": "Partekatu multimedia fitxategia",
"select-the-video-files-to-share": "AUKERATU PARTEKATZEKO BIDEO FITXATEGIAK",
"share-website-iframe": "Partekatu web orrialdea",
"enter-the-website-URL-you-wish-to-share": "Sartu partekatzeko web orrialdearen helbidea.",
"run-a-speed-test": "Neurtu konexio abiadura",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Irakurri gidak",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Kamera kargatzeko zain",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -574,7 +583,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START",
"note-share-audio": "<strong>注意</strong>: Chromeの「音声の共有」を必ずクリックして下さい。<br>(Firefox は音声の共有をサポートしていません)",
"record": "録画",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "Sartu gela izena batzeko",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Bidali nahi den mezua hemen sartu",
"enter-a-room-name-here": "gelaren izena",
"optional-room-password-here": "gelaren hautazko pasahitza",
"optional": "Hautazkoa",
"give-this-media-source-a-name-optional-": "media iturriaren izena (hautazkoa)",
"add-an-optional-password": "aukerazko pasahitza",
"enter-room-name-here": "gelaren izena",
"enter-your-message-here": "Idatzi hemen mezua",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "gelaren izena",
"enter-the-room-password-here": "Gelaren pasahitza"
"enter-the-room-password-here": "Gelaren pasahitza",
"enter-a-room-name-here": "gelaren izena",
"optional-room-password-here": "gelaren hautazko pasahitza",
"optional": "Hautazkoa",
"give-this-media-source-a-name-optional-": "media iturriaren izena (hautazkoa)",
"add-an-optional-password": "aukerazko pasahitza",
"enter-room-name-here": "gelaren izena"
},
"miscellaneous": {
"new-display-name": "Izen berria jarri stream honi",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Join room",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Record your stream to disk",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Cancel the Director's Video/Audio",
"submit-any-error-logs": "Submit any error logs",
"show-help-contact-info": "Show help contact info",
"language-options": "Options de langue",
"add-to-calendar": "Add to Calendar",
"add-group-chat-to-obs": "Add Group Chat to OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera to OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "conseil : Maintenir CTRL (ou command) pour sélectionner plusieurs",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare into OBS",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Idéal pour le format gaming 1080p60 si votre ordinateur le permet",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Meilleure compression et qualité vidéo en contrepartie d'un chargement d'encodage CPU plus long",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Désactiver les effets audio et augmenter le débit audio",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "L'invité ne pourra pas modifier les paramètres audio",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "L'invité pourra uniquement modifier sa caméra",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Ajouter un mot de passe pour que le flux vidéo ne soit pas accessible au personne n'ayant pas le mot de passe",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Ajouter l'invité à une salle de discussion en groupe; elle sera créée automatiquement si nécessaire.",
"customize-the-room-settings-for-this-guest": "Personnaliser les paramètres de la salle pour cet invité",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Saisir une URL en HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube Video demoing how to do this",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Invite a guest or camera source to publish into the group room",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "If disabled, the invited guest will not be able to see or hear anyone in the room.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Mute this guest everywhere",
"disable-video-preview": "Désactiver l'aperçu vidéo",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Remote Audio Settings",
"advanced-video-settings": "Advanced Video Settings",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Add to Scene 2",
"activate-or-reload-this-video-device-": "Activate or Reload this video device.",
"tip-hold-ctrl-command-to-select-multiple": "conseil : Maintenir CTRL (ou command) pour sélectionner plusieurs",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Add Group Chat to OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera to OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare into OBS",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Idéal pour le format gaming 1080p60 si votre ordinateur le permet",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Meilleure compression et qualité vidéo en contrepartie d'un chargement d'encodage CPU plus long",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Désactiver les effets audio et augmenter le débit audio",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "L'invité ne pourra pas modifier les paramètres audio",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "L'invité pourra uniquement modifier sa caméra",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Ajouter un mot de passe pour que le flux vidéo ne soit pas accessible au personne n'ayant pas le mot de passe",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Ajouter l'invité à une salle de discussion en groupe; elle sera créée automatiquement si nécessaire.",
"customize-the-room-settings-for-this-guest": "Personnaliser les paramètres de la salle pour cet invité",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Saisir une URL en HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Mettre le haut parleur en sourdine",
"mute-the-mic": "Mettre le micro en sourdine",
"disable-the-camera": "Désactiver la caméra",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Montrer l'aide",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Enter a room name to quick join",
"create-a-secondary-stream": "Create a Secondary Stream",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Conversation de groupe",
"rooms-allow-for": "Les salles permettent une conversation de groupe simplifiée et la gestion avancée de plusieurs flux à la fois.",
"room-name": "Nom de la salle",
"password-input-field": "Mot de passe",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Entrez dans le centre de contrôle de la pièce",
"show-tips": "Montrez-moi quelques conseils ...",
"added-notes": "\n<u><i>Added Notes:</i></u>\n<li>N'importe qui peut entrer dans une pièce s'il en connaît le nom, alors gardez-le unique</li>\n<li>Il n'est pas conseillé d'avoir plus de quatre (4) personnes dans une pièce pour des raisons de performances, mais cela dépend de votre matériel.</li>\n<li>Les appareils iOS sont limités à des groupes de deux (2) personnes maximum. Il s'agit d'une limitation matérielle.</li>\n\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Retour",
"add-your-camera": "Ajoutez votre caméra à OBS",
"ask-for-permissions": "Autoriser l'accès à la caméra / au micro",
"waiting-for-camera": "Chargement de la caméra",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Source vidéo",
"up-to-4k": "4K",
"max-resolution": "Résolution max.",
"balanced": "Équilibré",
"smooth-cool": "Lisse et frais",
"select-audio-source": "Sélectionner la source audio : \n\t",
"no-audio": "Pas de son",
"select-output-source": "Sélectionner la sortie audio ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Partage d'écran à distance dans OBS",
"select-screen-to-share": "Choisir l'écran à partager",
"audio-sources": "Sources audio",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Créer une invitation réutilisable",
"here-you-can-pre-generate": "Ici, vous pouvez pré-générer un lien de source de navigateur réutilisable et un lien d'invitation d'invité associé.",
"generate-invite-link": "GÉNÉRER LE LIEN D'INVITATION",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Déverrouiller le débit vidéo (20 Mbps)",
"force-vp9-video-codec": "Forcer le codec vidéo VP9",
"enable-stereo-and-pro": "Activer l'audio stéréo et Pro HD",
"video-resolution": "Video Resolution: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Forcer l'utilisation du micro par défaut",
"hide-screen-share": "Masquer les options de partage d'écran",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Ajouter un mot de passe:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Ajouter l'invité à une salle:",
"invite-group-chat-type": "Cet invité peut:",
"can-see-and-hear": "Peut voir et entendre le tchat de groupe",
"can-hear-only": "Peut seulement entendre le tchat de groupe",
"cant-see-or-hear": "Ne peut ni entendre ni voir le tchat de groupe",
"share-local-video-file": "Partager un fichier média",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Partager site internet",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Exécuter un test de vitesse",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Parcourir les guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Qu'est-ce que VDO.Ninja</h2><br>\n<li>100% <b> gratuit </b>; aucun téléchargement; aucune collecte de données personnelles; pas de connexion</li>\n<li>Importez des vidéos de votre smartphone, ordinateur portable, ordinateur ou de vos amis directement dans votre flux vidéo OBS</li>\n<li>Nous utilisons une technologie de transfert Peer-to-Peer de pointe qui offre une confidentialité et une latence ultra-faible</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Démonstration ici</a> </li>\n<h3>\n\t<i>Découvrez le <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit</a> <i class=\"fa fa-reddit-alien\" aria-hidden=\"true\"></i> pour de l'aide et des informations avancées.</i></h3>\n<br><h3>\n🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3>",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "Welcome. This is the control-room for the group-chat. There are different things you can use this room for:<br><br>\t<li>You can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.</li>\t<li>A group room can handle around 4 to 30 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room.</li>\t<li>Solo-views of each video are offered under videos as they load. These can be used within an OBS Browser Source.</li>\t<li>You can use the auto-mixing Group Scene, the green link, to auto arrange multiple videos for you in OBS.</li>\t<li>You can use this control room to record isolated video or audio streams, but it is an experimental feature still.</li>\t<li>Videos in the Director's room will be of low quality on purpose; to save bandwidth/CPU</li>\t<li>Guest's in the room will see each other's videos at a very limited quality to conserve bandwidth/CPU.</li>\t<li>OBS will see a guest's video in high-quality; the default video bitrate is 2500kbps.</li>\t<br>\tAs guests join, their videos will appear below. You can bring their video streams into OBS as solo-scenes or you can add them to the Group Scene.\t<br>The Group Scene auto-mixes videos that have been added to the group scene. Please note that the Auto-Mixer requires guests be manually added to it for them to appear in it; they are not added automatically.<br><br>Apple mobile devices, such as iPhones and iPads, do not fully support Video Group Chat. This is a hardware constraint.<br><br>\tFor advanced options and parameters, <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Guides-and-How-to's#urlparameters\">see the Wiki.</a>",
@@ -440,15 +354,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Déverrouiller le débit vidéo (20 Mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Mettre en sourdine",
"send-direct-chat": "Message",
"close": "close",
@@ -479,10 +391,36 @@
"force-keyframe": "Rainbow Puke",
"advanced-audio-settings": "l'audio",
"advanced-camera-settings": "vidéo",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Surligner",
"video-source": "Source vidéo",
"max-resolution": "Résolution max.",
"balanced": "Équilibré",
"smooth-cool": "Lisse et frais",
"select-audio-source": "Sélectionner la source audio : \n\t",
"select-output-source": "Sélectionner la sortie audio ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Ouvrir dans un nouvel onglet",
"copy-to-clipboard": "Copier dans le presse-papier",
"edit-url": "Edit URL manually",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Conversation de groupe",
"rooms-allow-for": "Les salles permettent une conversation de groupe simplifiée et la gestion avancée de plusieurs flux à la fois.",
"room-name": "Nom de la salle",
"password-input-field": "Mot de passe",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Entrez dans le centre de contrôle de la pièce",
"show-tips": "Montrez-moi quelques conseils ...",
"added-notes": "\n<u><i>Added Notes:</i></u>\n<li>N'importe qui peut entrer dans une pièce s'il en connaît le nom, alors gardez-le unique</li>\n<li>Il n'est pas conseillé d'avoir plus de quatre (4) personnes dans une pièce pour des raisons de performances, mais cela dépend de votre matériel.</li>\n<li>Les appareils iOS sont limités à des groupes de deux (2) personnes maximum. Il s'agit d'une limitation matérielle.</li>\n\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Retour",
"add-your-camera": "Ajoutez votre caméra à OBS",
"ask-for-permissions": "Autoriser l'accès à la caméra / au micro",
"start": "REJOINDRE",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Pas de son",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Partage d'écran à distance dans OBS",
"select-screen-to-share": "Choisir l'écran à partager",
"audio-sources": "Sources audio",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Créer une invitation réutilisable",
"here-you-can-pre-generate": "Ici, vous pouvez pré-générer un lien de source de navigateur réutilisable et un lien d'invitation d'invité associé.",
"generate-invite-link": "GÉNÉRER LE LIEN D'INVITATION",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Forcer le codec vidéo VP9",
"enable-stereo-and-pro": "Activer l'audio stéréo et Pro HD",
"video-resolution": "Video Resolution: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Forcer l'utilisation du micro par défaut",
"hide-screen-share": "Masquer les options de partage d'écran",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Ajouter un mot de passe:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Ajouter l'invité à une salle:",
"invite-group-chat-type": "Cet invité peut:",
"can-see-and-hear": "Peut voir et entendre le tchat de groupe",
"can-hear-only": "Peut seulement entendre le tchat de groupe",
"cant-see-or-hear": "Ne peut ni entendre ni voir le tchat de groupe",
"share-local-video-file": "Partager un fichier média",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Partager site internet",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Exécuter un test de vitesse",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Parcourir les guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Qu'est-ce que VDO.Ninja</h2><br>\n<li>100% <b> gratuit </b>; aucun téléchargement; aucune collecte de données personnelles; pas de connexion</li>\n<li>Importez des vidéos de votre smartphone, ordinateur portable, ordinateur ou de vos amis directement dans votre flux vidéo OBS</li>\n<li>Nous utilisons une technologie de transfert Peer-to-Peer de pointe qui offre une confidentialité et une latence ultra-faible</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Démonstration ici</a> </li>\n<h3>\n\t<i>Découvrez le <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit</a> <i class=\"fa fa-reddit-alien\" aria-hidden=\"true\"></i> pour de l'aide et des informations avancées.</i></h3>\n<br><h3>\n🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Chargement de la caméra",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -574,7 +583,6 @@
"guest-toggle": "Invité Basculer",
"settings": "paramètres",
"more": "Plus",
"start": "REJOINDRE",
"note-share-audio": "\n\t<b>note</b>: N'oubliez pas de cliquer sur Partager l'audio dans Chrome.<br>(Firefox ne prend pas en charge le partage audio.)",
"record": "Enregistrer",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "Rejoindre via le nom de salle ici",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Saisir un message ici pour l'envoyer dans le tchat",
"enter-a-room-name-here": "Saisir un nom de salle ici",
"optional-room-password-here": "Mot de passe (optionnel) pour la salle ici",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Donner un nom à cette source média (optionnel)",
"add-an-optional-password": "Ajouter un mot de passe optionnel",
"enter-room-name-here": "Saisir le nom de la salle ici",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here"
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Saisir un nom de salle ici",
"optional-room-password-here": "Mot de passe (optionnel) pour la salle ici",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Donner un nom à cette source média (optionnel)",
"add-an-optional-password": "Ajouter un mot de passe optionnel",
"enter-room-name-here": "Saisir le nom de la salle ici"
},
"miscellaneous": {
"new-display-name": "Enter a new Display Name for this stream",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Entra nella stanza",
"enter-the-url-to-load": "Inserire l'URL da caricare",
"load-url": "Carica URL",
"number-of-outbound-connections": "Numero di connessioni in uscita",
"number-of-outbound-audio-streams": "Numero di flussi audio in uscita",
"number-of-outbound-video-streams": "Numero di flussi video in uscita",
"number-of-scenes-": "Numero di scene.",
"total-upload-bitrate": "Bitrate totale di upload",
"copy-link-to-clipboard": "Copia il link negli appunti",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Salva e chiedi di ricaricare la pagina corrente alla prossima visita del sito.",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Ricorda la stanza, chiedendo alla prossima visita se si desidera caricare di nuovo la stanza.",
@@ -34,56 +39,12 @@
"next-slide": "Slide successiva",
"record-your-stream-to-disk": "Registra il tuo stream su disco",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Cancel the Director's Video/Audio",
"submit-any-error-logs": "Invia eventuali log di errore",
"show-help-contact-info": "Show help contact info",
"language-options": "Opzioni di lingua",
"add-to-calendar": "Aggiungi al calendario",
"add-group-chat-to-obs": "Aggiungi chat di gruppo a OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Per le sale di gruppo di grandi dimensioni, questa opzione può ridurre notevolmente il carico sugli ospiti remoti",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "Il regista sarà visibile nelle scene, come se fosse egli stesso un partecipante.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Se questa opzione è selezionata, il regista può essere aggiunto alle scene come se fosse un ospite. Altrimenti, il regista non apparirà mai in una scena.",
"which-video-codec-would-you-want-used-by-default-": "Quale codec video vorresti fosse usato per impostazione predefinita?",
"you-ll-enter-as-the-room-s-director": "Entrerai come direttore della stanza",
"add-your-camera-to-obs": "Aggiungi la tua camera a OBS",
"right-click-this-video-for-additional-options": "Fare clic con il tasto destro del mouse su questo video per visualizzare ulteriori opzioni",
"start-streaming-alt-s-": "Avvio dello streaming (Alt + s)",
"video-source-list": "Elenco sorgenti video",
"tip-hold-ctrl-command-to-select-multiple": "tip: Tieni premut CTRL (command) per selezionare multipla ",
"play-a-sound-out-of-the-selected-audio-playback-device": "Riproduce un suono dal dispositivo di riproduzione audio selezionato.",
"experimental": "sperimentale",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Abilitare il flag delle funzioni sperimentali di Chrome: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Migliorate le prestazioni e la qualità con questo suggerimento",
"adjust-the-amount-of-effect-applied": "Regolare la quantità di effetto applicato",
"add-an-optional-password": "Aggiungere una password opzionale",
"enter-an-optional-password-here": "Inserire qui una password opzionale",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Aggiungere il microfono a OBS",
"remote-screenshare-into-obs": "Condivisione dello schermo in remoto in OBS",
"create-reusable-invite": "Crea invito riutilizzabile",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideale per il gioco a 1080p60 , se il tuo computer e upload lo supportano",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Migliore compressione e qualità video al costo di un maggiore carico di codifica della CPU ",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Disattiva gli effetti audio digitali e aumenta il bitrate audio ",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "L'ospite non avrà scelta sulle opzioni audio",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "L'ospite potrà solo selezionare la propria webcam come opzione",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Codifica l'URL in modo che sia più difficile per un ospite modificare le impostazioni.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Aggiungi una password per rendere il flusso inaccessibile a chi non ha la password",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Aggiungere l'ospite a una chat room di gruppo; verrà creato automaticamente se necessario.",
"customize-the-room-settings-for-this-guest": "Personalizza le impostazioni della stanza per questo ospite ",
"more-options": "Più opzioni",
"transfer-any-file": "Trasferire qualsiasi file",
"enter-an-https-url": "Inserisci un URL HTTPS ",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Informazioni sulle versioni native delle applicazioni VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Aprire una pagina con gli ultimi sviluppi e aggiornamenti delle funzionalità di VDO.Ninja",
"youtube-video-demoing-how-to-do-this": "Video dimostrativo su Youtube su come farlo",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Invita un ospite o una fonte a pubblicare nella stanza del gruppo",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "Se l'ospite è disabilitato, non sarà in grado di vedere o sentire nessuno nella stanza.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Disattiva questo ospite ovunque",
"disable-video-preview": "Disattiva anteprima video",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Aggiungi/rimuovi dal gruppo 6",
"remote-audio-settings": "Impostazioni audio remote",
"advanced-video-settings": "Impostazioni video avanzate",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Aggiungi alla scena 2",
"activate-or-reload-this-video-device-": "Attiva o Ricarica questo dispositivo video.",
"tip-hold-ctrl-command-to-select-multiple": "tip: Tieni premut CTRL (command) per selezionare multipla ",
"experimental": "sperimentale",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Migliorate le prestazioni e la qualità con questo suggerimento",
"adjust-the-amount-of-effect-applied": "Regolare la quantità di effetto applicato",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Numero di connessioni in uscita",
"number-of-outbound-audio-streams": "Numero di flussi audio in uscita",
"number-of-outbound-video-streams": "Numero di flussi video in uscita",
"number-of-scenes-": "Numero di scene.",
"total-upload-bitrate": "Bitrate totale di upload",
"add-group-chat-to-obs": "Aggiungi chat di gruppo a OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Per le sale di gruppo di grandi dimensioni, questa opzione può ridurre notevolmente il carico sugli ospiti remoti",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "Il regista sarà visibile nelle scene, come se fosse egli stesso un partecipante.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Se questa opzione è selezionata, il regista può essere aggiunto alle scene come se fosse un ospite. Altrimenti, il regista non apparirà mai in una scena.",
"which-video-codec-would-you-want-used-by-default-": "Quale codec video vorresti fosse usato per impostazione predefinita?",
"you-ll-enter-as-the-room-s-director": "Entrerai come direttore della stanza",
"add-your-camera-to-obs": "Aggiungi la tua camera a OBS",
"right-click-this-video-for-additional-options": "Fare clic con il tasto destro del mouse su questo video per visualizzare ulteriori opzioni",
"start-streaming-alt-s-": "Avvio dello streaming (Alt + s)",
"video-source-list": "Elenco sorgenti video",
"play-a-sound-out-of-the-selected-audio-playback-device": "Riproduce un suono dal dispositivo di riproduzione audio selezionato.",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Abilitare il flag delle funzioni sperimentali di Chrome: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Aggiungere una password opzionale",
"enter-an-optional-password-here": "Inserire qui una password opzionale",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Aggiungere il microfono a OBS",
"remote-screenshare-into-obs": "Condivisione dello schermo in remoto in OBS",
"create-reusable-invite": "Crea invito riutilizzabile",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideale per il gioco a 1080p60 , se il tuo computer e upload lo supportano",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Migliore compressione e qualità video al costo di un maggiore carico di codifica della CPU ",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Disattiva gli effetti audio digitali e aumenta il bitrate audio ",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "L'ospite non avrà scelta sulle opzioni audio",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "L'ospite potrà solo selezionare la propria webcam come opzione",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Codifica l'URL in modo che sia più difficile per un ospite modificare le impostazioni.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Aggiungi una password per rendere il flusso inaccessibile a chi non ha la password",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Aggiungere l'ospite a una chat room di gruppo; verrà creato automaticamente se necessario.",
"customize-the-room-settings-for-this-guest": "Personalizza le impostazioni della stanza per questo ospite ",
"more-options": "Più opzioni",
"transfer-any-file": "Trasferire qualsiasi file",
"enter-an-https-url": "Inserisci un URL HTTPS ",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Aprire una pagina con gli ultimi sviluppi e aggiornamenti delle funzionalità di VDO.Ninja",
"info-on-the-native-app-versions-of-vdo-ninja": "Informazioni sulle versioni native delle applicazioni VDO.Ninja",
"mute-the-speaker": "Muta lo Speaker",
"mute-the-mic": "Disattiva il microfono",
"disable-the-camera": "Disattiva la Camera",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Mostra Info Helo",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Inserisci il nome di una stanza per unirti rapidamente",
"create-a-secondary-stream": "Crea un flusso secondario",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Aggiungi chat di gruppo a OBS",
"rooms-allow-for": "Le stanze consentono una chat di gruppo semplificata e la gestione avanzata di più flussi contemporaneamente.",
"room-name": "Nome stanza",
"password-input-field": "Password",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Entra nella gestione della stanza",
"show-tips": "Mosta alcuni suggerimenti..",
"added-notes": "\n<u><i>Aggiungi note:</i></u>\n<li>Chiunque può entrare in una stanza se conosce il nome, quindi mantienilo unico</li>\n<li>Invita solo persone fidate nella stanza.</li>\n<li>I dispositivi iOS condivideranno solo il loro audio con altri ospiti; questa è principalmente una limitazione hardware</li>\n<li>Opzione \"Registrazione\" è considerata opzioneale.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Indietro",
"add-your-camera": "Aggiungi camera ad OBS",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"waiting-for-camera": "In attesa di caricamento",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Sorgente Video",
"up-to-4k": "4K",
"max-resolution": "1080p (hi-def)",
"balanced": "720p (balanced)",
"smooth-cool": "360p (smooth)",
"select-audio-source": "Seleziona sorgente audio",
"no-audio": "No Audio",
"select-output-source": " Destinazione Output Audio : \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Screenshare remoto dentro OBS",
"select-screen-to-share": "Seleziona lo schermo da condividere",
"audio-sources": "Sorgenti Audio",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Crea un invito riutilizzabile",
"here-you-can-pre-generate": "Qui è possibile pre-generare un collegamento Sorgente del browser riutilizzabile e un collegamento di invito ospite correlato.",
"generate-invite-link": "Genera Link invito",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Sblocca Video Bitrate (20mbps)",
"force-vp9-video-codec": "Forza VP9 Video Codec (less artifacting)",
"enable-stereo-and-pro": "Abilita Stereo e Pro HD Audio",
"video-resolution": "Risoluzioni Video: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Nascondi opzione Screenshare",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Aggiungi Password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": "Aggiungi l'ospite a una stanza:",
"invite-group-chat-type": "In questa stanza ospite può fare:",
"can-see-and-hear": "Può vedere e ascoltare la chat di gruppo",
"can-hear-only": "Può solo ascoltare la chat di gruppo",
"cant-see-or-hear": "Impossibile ascoltare o vedere la chat di gruppo",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Cosa è VDO.Ninja</h2><br>\n<li>100% <b>free</b>; nessun download; nessuna raccolta di dati personali; nessun accesso</li>\n<li>Porta video dal tuo smartphone, computer o amici direttamente nel tuo flusso video OBS</li>\n<li>Utilizziamo una tecnologia di inoltro peer-to-peer all'avanguardia che offre privacy e latenza ultra bassa</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Demoing è presente</a> </li>\n<br><h3>\n🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3>",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "Benvenuto. Questa è la sala di controllo per la chat di gruppo. Ci sono diverse cose per cui puoi usare questa stanza:<br><br>\t<li>Puoi ospitare una chat di gruppo con gli amici utilizzando una stanza. Condividi il link blu per invitare gli ospiti che si uniranno automaticamente alla chat.</li>\t<li>Una sala per gruppi può ospitare da 4 a 30 persone, a seconda di numerosi fattori, tra cui CPU e larghezza di banda disponibile di tutti gli ospiti nella stanza.</li>\t<li>Solo-views of each video are offered under videos as they load. These can be used within an OBS Browser Source.</li>\t<li>You can use the auto-mixing Group Scene, the green link, to auto arrange multiple videos for you in OBS.</li>\t<li>You can use this control room to record isolated video or audio streams, but it is an experimental feature still.</li>\t<li>Videos in the Director's room will be of low quality on purpose; to save bandwidth/CPU</li>\t<li>Guest's in the room will see each other's videos at a very limited quality to conserve bandwidth/CPU.</li>\t<li>OBS will see a guest's video in high-quality; the default video bitrate is 2500kbps.</li>\t<br>\tAs guests join, their videos will appear below. You can bring their video streams into OBS as solo-scenes or you can add them to the Group Scene.\t<br>The Group Scene auto-mixes videos that have been added to the group scene. Please note that the Auto-Mixer requires guests be manually added to it for them to appear in it; they are not added automatically.<br><br>Apple mobile devices, such as iPhones and iPads, do not fully support Video Group Chat. This is a hardware constraint.<br><br>\tFor advanced options and parameters, <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Guides-and-How-to's#urlparameters\">see the Wiki.</a>",
@@ -440,15 +354,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Sblocca Video Bitrate (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Muta",
"send-direct-chat": "Message",
"close": "close",
@@ -479,10 +391,36 @@
"force-keyframe": "Rainbow Puke",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Audio Settings",
"advanced-camera-settings": "<i class=\"las la-cog\"></i> Advanced",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Highlight",
"video-source": "Sorgente Video",
"max-resolution": "1080p (hi-def)",
"balanced": "720p (balanced)",
"smooth-cool": "360p (smooth)",
"select-audio-source": "Seleziona sorgente audio",
"select-output-source": " Destinazione Output Audio : \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Apri in una nuova Tab",
"copy-to-clipboard": "Copia negli appunti",
"edit-url": "Edit URL manually",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Aggiungi chat di gruppo a OBS",
"rooms-allow-for": "Le stanze consentono una chat di gruppo semplificata e la gestione avanzata di più flussi contemporaneamente.",
"room-name": "Nome stanza",
"password-input-field": "Password",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Entra nella gestione della stanza",
"show-tips": "Mosta alcuni suggerimenti..",
"added-notes": "\n<u><i>Aggiungi note:</i></u>\n<li>Chiunque può entrare in una stanza se conosce il nome, quindi mantienilo unico</li>\n<li>Invita solo persone fidate nella stanza.</li>\n<li>I dispositivi iOS condivideranno solo il loro audio con altri ospiti; questa è principalmente una limitazione hardware</li>\n<li>Opzione \"Registrazione\" è considerata opzioneale.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Indietro",
"add-your-camera": "Aggiungi camera ad OBS",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "No Audio",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Screenshare remoto dentro OBS",
"select-screen-to-share": "Seleziona lo schermo da condividere",
"audio-sources": "Sorgenti Audio",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Crea un invito riutilizzabile",
"here-you-can-pre-generate": "Qui è possibile pre-generare un collegamento Sorgente del browser riutilizzabile e un collegamento di invito ospite correlato.",
"generate-invite-link": "Genera Link invito",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Forza VP9 Video Codec (less artifacting)",
"enable-stereo-and-pro": "Abilita Stereo e Pro HD Audio",
"video-resolution": "Risoluzioni Video: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Nascondi opzione Screenshare",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Aggiungi Password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": "Aggiungi l'ospite a una stanza:",
"invite-group-chat-type": "In questa stanza ospite può fare:",
"can-see-and-hear": "Può vedere e ascoltare la chat di gruppo",
"can-hear-only": "Può solo ascoltare la chat di gruppo",
"cant-see-or-hear": "Impossibile ascoltare o vedere la chat di gruppo",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Cosa è VDO.Ninja</h2><br>\n<li>100% <b>free</b>; nessun download; nessuna raccolta di dati personali; nessun accesso</li>\n<li>Porta video dal tuo smartphone, computer o amici direttamente nel tuo flusso video OBS</li>\n<li>Utilizziamo una tecnologia di inoltro peer-to-peer all'avanguardia che offre privacy e latenza ultra bassa</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Demoing è presente</a> </li>\n<br><h3>\n🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "In attesa di caricamento",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -574,7 +583,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START",
"note-share-audio": "\n<b>note</b>: Do not forget to click \"Condividi audio\" in Chrome.<br>(Firefox non supporta la condivisione dell'audio..)",
"record": "Registra",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "Join by Room Name here",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Enter chat message to send here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here"
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here"
},
"miscellaneous": {
"new-display-name": "Enter a new Display Name for this stream",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "部屋に参加",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "配信をディスクに録画する",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "ディレクターの映像/オーディオをキャンセルする",
"submit-any-error-logs": "エラーログを提出する",
"show-help-contact-info": "Show help contact info",
"language-options": "言語設定",
"add-to-calendar": "カレンダーに追加",
"add-group-chat-to-obs": "OBSにグループチャットを追加する",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "大人数の部屋では、このオプションにより遠隔地にいるゲストの負担を大幅に軽減することができます。",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "ディレクターは、まるで自分が演者であるかのように、シーンに表示されます",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "デフォルトで使用したいビデオコーデックは?",
"you-ll-enter-as-the-room-s-director": "部屋のディレクターとして入室する",
"add-your-camera-to-obs": "OBSにカメラを追加する",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "ヒントCTRLcommandを押しながら複数選択する",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "このヒントで性能と品質を向上させる",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "OBSへのリモート画面共有",
"create-reusable-invite": "再利用可能な招待状を作成する",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "お使いのパソコンと回線がそれに適している場合は、1080p60ゲームに最適です",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "CPUのエンコード負荷が増加する代わりに、より良い映像圧縮と品質",
"disable-digital-audio-effects-and-increase-audio-bitrate": "デジタルオーディオエフェクトを無効にして、オーディオビットレートを上げます",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "ゲストはオーディをオプションを選択することはできません",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "ゲストはオプションとして自分のウェブカメラのみを選択できます",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "URLを記号化して、ゲストが設定を変更しにくくする",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "パスワードを追加して、パスワードがない人は配信にアクセスできないようにします",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "グループチャットルームにゲストを追加する。必要に応じて自動的に作成されます。",
"customize-the-room-settings-for-this-guest": "このゲストのルーム設定をカスタマイズする",
"more-options": "その他のオプション",
"transfer-any-file": "任意のファイルを転送する",
"enter-an-https-url": "HTTPS URLを入力する",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube動画で紹介しています",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "ゲストやカメラソースを招待して、グループルームに公開する。",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "無効の場合、ゲストは部屋にいる人の顔を見たり、声を聞いたりすることができなくなります。",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "モノラルチャンネル音声で映像を再生する",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "映像は、多少トリミングしてでも、それぞれの領域に収まるようにする",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "縦型用に設計されたサイズで映像を整列させる",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "このStream IDをクリップボードにコピーする",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "このストリームのラベルを編集するには、ここをクリックしてください。変更は、このストリームのすべての視聴者に反映されます。",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "このゲストをどこでもミュートする",
"disable-video-preview": "映像プレビューを無効にする",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "リモート音声設定",
"advanced-video-settings": "映像の詳細設定",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "これは、リモートゲストに変更の許可を求めるものです。",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "何もない状態で映像・音声ストリームを直接見ることができます。その音声はここからリモートコントロールできます",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "このゲストは手を挙げました。これをクリックすると、通知が解除されます。",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "シーン2に追加",
"activate-or-reload-this-video-device-": "この映像デバイスを有効化または再読み込みする。",
"tip-hold-ctrl-command-to-select-multiple": "ヒントCTRLcommandを押しながら複数選択する",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "このヒントで性能と品質を向上させる",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "このウィンドウを隠す",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "OBSにグループチャットを追加する",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "大人数の部屋では、このオプションにより遠隔地にいるゲストの負担を大幅に軽減することができます。",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "ディレクターは、まるで自分が演者であるかのように、シーンに表示されます",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "デフォルトで使用したいビデオコーデックは?",
"you-ll-enter-as-the-room-s-director": "部屋のディレクターとして入室する",
"add-your-camera-to-obs": "OBSにカメラを追加する",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "OBSへのリモート画面共有",
"create-reusable-invite": "再利用可能な招待状を作成する",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "お使いのパソコンと回線がそれに適している場合は、1080p60ゲームに最適です",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "CPUのエンコード負荷が増加する代わりに、より良い映像圧縮と品質",
"disable-digital-audio-effects-and-increase-audio-bitrate": "デジタルオーディオエフェクトを無効にして、オーディオビットレートを上げます",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "ゲストはオーディをオプションを選択することはできません",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "ゲストはオプションとして自分のウェブカメラのみを選択できます",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "URLを記号化して、ゲストが設定を変更しにくくする",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "パスワードを追加して、パスワードがない人は配信にアクセスできないようにします",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "グループチャットルームにゲストを追加する。必要に応じて自動的に作成されます。",
"customize-the-room-settings-for-this-guest": "このゲストのルーム設定をカスタマイズする",
"more-options": "その他のオプション",
"transfer-any-file": "任意のファイルを転送する",
"enter-an-https-url": "HTTPS URLを入力する",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "スピーカーをミュートにする",
"mute-the-mic": "マイクをミュートする",
"disable-the-camera": "カメラを無効にする",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "ヘルプを表示する",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "このStream IDをクリップボードにコピーする",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "このストリームのラベルを編集するには、ここをクリックしてください。変更は、このストリームのすべての視聴者に反映されます。",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "これは、リモートゲストに変更の許可を求めるものです。",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "何もない状態で映像・音声ストリームを直接見ることができます。その音声はここからリモートコントロールできます",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "このゲストは手を挙げました。これをクリックすると、通知が解除されます。",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "ルーム名を入力してクイック参加",
"create-a-secondary-stream": "二次的配信を作成する",
"share-a-website-as-an-embedded-iframe": "iFRAMEを埋め込んでウェブサイトを共有する",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "OBSにグループミーティングを追加",
"rooms-allow-for": "ルームを利用すると、グループミーティングや複数ストリームを、一つの画面で管理できます。",
"room-name": "ルーム名",
"password-input-field": "Password",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "ルーム管理センターに入る",
"show-tips": "ヒントを表示",
"added-notes": "<i><u>追加情報:<u></u></u></i><li><u><u>ルーム名を知っている人は誰でもルームに入れるため、ユニークなルーム名にして下さい。</u></u></li><li><u><u>ハードウェア性能にもよりますが、パフォーマンス上の理由から、4人以上のルーム利用はおすすめできません。</u></u></li><li><u><u>iOSデバイスでは、2人以下のグループサイズに制限されます。これはハードウェアによる制限です。</u></u></li><li><u><u>\"Recording\" オプションは実験的な新機能です。</u></u></li><li><u><u>ビデオフィードを「グループシーン」に表示するには、そこに「追加」する必要があります。</u></u></li><li><u><u>ゲストのビューに、新しい「強化されたフルスクリーン」ボタンが追加されました。</u></u></li>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "戻る",
"add-your-camera": "OBSに自分のカメラを追加",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"waiting-for-camera": "カメラがロードされるのを待っています...",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "映像ソース",
"up-to-4k": "4K",
"max-resolution": "最大解像度",
"balanced": "バランス",
"smooth-cool": "スムーズ&クール",
"select-audio-source": "音声ソースを選択",
"no-audio": "音声なし",
"select-output-source": "音声出力先:",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "OBSに画面共有を追加",
"select-screen-to-share": "共有する画面を選択",
"audio-sources": "音声ソース",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "再利用可能な招待リンクを作成",
"here-you-can-pre-generate": "再利用可能なブラウザソースリンクと、関連するゲスト招待リンクを、事前に作成できます。",
"generate-invite-link": "招待リンクを作成",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "ビデオビットレートをアンロック (20mbps)",
"force-vp9-video-codec": "VP9ビデオコーデックの使用を強制 (less artifacting)",
"enable-stereo-and-pro": "ステレオ・プロHDオーディオを有効にする",
"video-resolution": "ビデオ解像度: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "画面共有オプションを非表示",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": "パスワードを追加:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": "ゲストをルームに追加:",
"invite-group-chat-type": "このルームのゲストは、次のことができる:",
"can-see-and-hear": "グループミーティングの映像・音声を視聴できる",
"can-hear-only": "グループミーティングの音声のみ聞ける",
"cant-see-or-hear": "グループミーティングの映像・音声を視聴できない",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h2>VDO.Ninja とは?</h2><br><li>超低遅延でプライバシーが保護された、ビデオストリームサービスです。</li><li>ライブ配信でゲストとの対話を配信したり、少人数のグループミーティングにも利用できます。</li><li>100% <strong>無料</strong>、ダウンロード不要、サインイン不要、個人情報を一切収集しません。</li><li>あなたや友人のスマートフォン、タブレット、PCなどから、直接OBSビデオストリームに映像を取り込めます。</li><li>プライバシーと超低遅延を実現するために、最先端のピアツーピア転送技術を使用しています。</li><br><li>YouTube: <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">デモ動画を見る</a> </li>\n<br><h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3>",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "Welcome. This is the control-room for the group-chat. There are different things you can use this room for:<br><br>\t<li>You can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.</li>\t<li>A group room can handle around 4 to 30 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room.</li>\t<li>Solo-views of each video are offered under videos as they load. These can be used within an OBS Browser Source.</li>\t<li>You can use the auto-mixing Group Scene, the green link, to auto arrange multiple videos for you in OBS.</li>\t<li>You can use this control room to record isolated video or audio streams, but it is an experimental feature still.</li>\t<li>Videos in the Director's room will be of low quality on purpose; to save bandwidth/CPU</li>\t<li>Guest's in the room will see each other's videos at a very limited quality to conserve bandwidth/CPU.</li>\t<li>OBS will see a guest's video in high-quality; the default video bitrate is 2500kbps.</li>\t<br>\tAs guests join, their videos will appear below. You can bring their video streams into OBS as solo-scenes or you can add them to the Group Scene.\t<br>The Group Scene auto-mixes videos that have been added to the group scene. Please note that the Auto-Mixer requires guests be manually added to it for them to appear in it; they are not added automatically.<br><br>Apple mobile devices, such as iPhones and iPads, do not fully support Video Group Chat. This is a hardware constraint.<br><br>\tFor advanced options and parameters, <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Guides-and-How-to's#urlparameters\">see the Wiki.</a>",
@@ -440,15 +354,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "ビデオビットレートをアンロック (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "ミュート",
"send-direct-chat": "Message",
"close": "close",
@@ -479,10 +391,36 @@
"force-keyframe": "Rainbow Puke",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Audio Settings",
"advanced-camera-settings": "<i class=\"las la-cog\"></i> Advanced",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Highlight",
"video-source": "映像ソース",
"max-resolution": "最大解像度",
"balanced": "バランス",
"smooth-cool": "スムーズ&クール",
"select-audio-source": "音声ソースを選択",
"select-output-source": "音声出力先:",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "新しいタブで開く",
"copy-to-clipboard": "クリップボードにコピー",
"edit-url": "Edit URL manually",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "OBSにグループミーティングを追加",
"rooms-allow-for": "ルームを利用すると、グループミーティングや複数ストリームを、一つの画面で管理できます。",
"room-name": "ルーム名",
"password-input-field": "Password",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "ルーム管理センターに入る",
"show-tips": "ヒントを表示",
"added-notes": "<i><u>追加情報:<u></u></u></i><li><u><u>ルーム名を知っている人は誰でもルームに入れるため、ユニークなルーム名にして下さい。</u></u></li><li><u><u>ハードウェア性能にもよりますが、パフォーマンス上の理由から、4人以上のルーム利用はおすすめできません。</u></u></li><li><u><u>iOSデバイスでは、2人以下のグループサイズに制限されます。これはハードウェアによる制限です。</u></u></li><li><u><u>\"Recording\" オプションは実験的な新機能です。</u></u></li><li><u><u>ビデオフィードを「グループシーン」に表示するには、そこに「追加」する必要があります。</u></u></li><li><u><u>ゲストのビューに、新しい「強化されたフルスクリーン」ボタンが追加されました。</u></u></li>",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "戻る",
"add-your-camera": "OBSに自分のカメラを追加",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "音声なし",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "OBSに画面共有を追加",
"select-screen-to-share": "共有する画面を選択",
"audio-sources": "音声ソース",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "再利用可能な招待リンクを作成",
"here-you-can-pre-generate": "再利用可能なブラウザソースリンクと、関連するゲスト招待リンクを、事前に作成できます。",
"generate-invite-link": "招待リンクを作成",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "VP9ビデオコーデックの使用を強制 (less artifacting)",
"enable-stereo-and-pro": "ステレオ・プロHDオーディオを有効にする",
"video-resolution": "ビデオ解像度: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "画面共有オプションを非表示",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": "パスワードを追加:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": "ゲストをルームに追加:",
"invite-group-chat-type": "このルームのゲストは、次のことができる:",
"can-see-and-hear": "グループミーティングの映像・音声を視聴できる",
"can-hear-only": "グループミーティングの音声のみ聞ける",
"cant-see-or-hear": "グループミーティングの映像・音声を視聴できない",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<h2>VDO.Ninja とは?</h2><br><li>超低遅延でプライバシーが保護された、ビデオストリームサービスです。</li><li>ライブ配信でゲストとの対話を配信したり、少人数のグループミーティングにも利用できます。</li><li>100% <strong>無料</strong>、ダウンロード不要、サインイン不要、個人情報を一切収集しません。</li><li>あなたや友人のスマートフォン、タブレット、PCなどから、直接OBSビデオストリームに映像を取り込めます。</li><li>プライバシーと超低遅延を実現するために、最先端のピアツーピア転送技術を使用しています。</li><br><li>YouTube: <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">デモ動画を見る</a> </li>\n<br><h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "カメラがロードされるのを待っています...",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -574,7 +583,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START",
"note-share-audio": "<strong>注意</strong>: Chromeの「音声の共有」を必ずクリックして下さい。<br>(Firefox は音声の共有をサポートしていません)",
"record": "録画",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "Join by Room Name here",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Enter chat message to send here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here"
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here"
},
"miscellaneous": {
"new-display-name": "Enter a new Display Name for this stream",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Ga de kamer in",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Streamopname naar lokale opslag",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Annuleer de Director zijn Video/Audio",
"submit-any-error-logs": "Verzend foutmeldingslog",
"show-help-contact-info": "Show help contact info",
"language-options": "Taal opties",
"add-to-calendar": "Add to Calendar",
"add-group-chat-to-obs": "Voeg een groepschat toe aan OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Bij grotere groepen kan deze optie voor een lagere belasting aan gast zijde zorgen",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "De director zal zichtbaar zijn in de scenes, alsof hij ook een gast is.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Welke video codec wil je standaard gebruiken?",
"you-ll-enter-as-the-room-s-director": "Je gaat de kamer binnen als Director",
"add-your-camera-to-obs": "Voeg je camera aan OBS toe",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "tip: Houd CTRL (command) vast om meerdere te selecteren",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Schermdelen naar OBS",
"create-reusable-invite": "creëer herbruikbaare link",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideaal voor 1080p60 game streaming, als de pc krachtig genoeg is",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Betere videocompressie en kwaliteit ten koste van verhoogde CPU encodering belasting",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Schakel digitale audio effecten uit en verhoogt audio bitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Gasten kunnen audio opties niet wijzigen",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Gast kan alleen een webcam selecteren",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Coder de link zo dat het moeilijker is voor de gast om er achter te komen welke instellingen ingesteld staan",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Voeg een wachtwoord toe en eis deze voor toegang",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Gast toevoegen aan groepschat.(Word automatisch gemaakt)",
"customize-the-room-settings-for-this-guest": "Geef (kamer) instellingen op voor deze gast",
"more-options": "Meer opties",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Voer een HTTPS URL in",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube video voorbeelden, hoe dit te doen!",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Vraag een gast zijn beeld te publiceren in de kamer",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "Waneer uitgeschakeld, zal de uitgenodigde gast niemand kunnen horen of zien in de kamer.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Deze gast niet meer hoorbaar maken overal",
"disable-video-preview": "Schakel Video Preview uit",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Audio instellingen op afstand",
"advanced-video-settings": "Geavanceerde instellingen van video",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Add to Scene 2",
"activate-or-reload-this-video-device-": "Activeer of herlaadt deze video bron.",
"tip-hold-ctrl-command-to-select-multiple": "tip: Houd CTRL (command) vast om meerdere te selecteren",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Voeg een groepschat toe aan OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Bij grotere groepen kan deze optie voor een lagere belasting aan gast zijde zorgen",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "De director zal zichtbaar zijn in de scenes, alsof hij ook een gast is.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Welke video codec wil je standaard gebruiken?",
"you-ll-enter-as-the-room-s-director": "Je gaat de kamer binnen als Director",
"add-your-camera-to-obs": "Voeg je camera aan OBS toe",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Schermdelen naar OBS",
"create-reusable-invite": "creëer herbruikbaare link",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideaal voor 1080p60 game streaming, als de pc krachtig genoeg is",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Betere videocompressie en kwaliteit ten koste van verhoogde CPU encodering belasting",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Schakel digitale audio effecten uit en verhoogt audio bitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Gasten kunnen audio opties niet wijzigen",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Gast kan alleen een webcam selecteren",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Coder de link zo dat het moeilijker is voor de gast om er achter te komen welke instellingen ingesteld staan",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Voeg een wachtwoord toe en eis deze voor toegang",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Gast toevoegen aan groepschat.(Word automatisch gemaakt)",
"customize-the-room-settings-for-this-guest": "Geef (kamer) instellingen op voor deze gast",
"more-options": "Meer opties",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Voer een HTTPS URL in",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Demp de Spreker",
"mute-the-mic": "Demp de Mic",
"disable-the-camera": "Camera uitzetten",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Geef Help weer",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Voer een naam in voor snelle toegang",
"create-a-secondary-stream": "Maak een tweede stream aan",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Voeg groepsgesprek toe",
"rooms-allow-for": "Kamers maken eenvoudige groepsgespreken en geavanceerd beheer van meerdere streams tegelijkertijd mogelijk.",
"room-name": "Kamer Naam",
"password-input-field": "Password",
"guests-only-see-director": "Gasten kunnen alleen de directors video zien",
"scenes-can-see-director": "Director is ook een gast",
"default-codec-select": "Geprefereerde Video Codec: ",
"enter-the-rooms-control": "Ga de Kamer's Controle Centrum in",
"show-tips": "Toon me wat tips..",
"added-notes": "\n<u><i>Notities:</i></u>\n<li>Iedereen kan de kamer binnenkomen als ze de naam kennen, dus hou hem uniek</li>\n<li>Meer dan vier (4) mensen in een kamer is niet aan te raden vanwege prestatie redenen, maar is afhankelijk van uw hardware.</li>\n<li>Bij iOS apparaten is de video alleen zichtbaar voor de regiseur. Dit is een hardware beperking.</li>\n<li>De \"Opname\" optie is nieuw en is experimenteel.</li>\n<li>U moet een video stroom \"Toevoegen\" aan de \"Groeps Scene\" om het hier te tonen.</li>\n<li>Er is een nieuwe \"uitgebreid volledig scherm\" knop toegevoegd aan het Gasten scherm.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Terug",
"add-your-camera": "Voeg je Camera toe",
"ask-for-permissions": "Geef toestemming voor gebruik Camera/Microfoon",
"waiting-for-camera": "Wachten op het Laden van de Camera",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Video bron",
"up-to-4k": "4K",
"max-resolution": "Max Resolutie",
"balanced": "Gebalanceerd",
"smooth-cool": "Soepel en Koel",
"select-audio-source": "Selecteer Geluidsbronnen",
"no-audio": "Geen Geluid",
"select-output-source": " Audio Output Destination: \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Deel externe scherm",
"select-screen-to-share": "SELECTEER SCHERM OM TE DELEN",
"audio-sources": "Geluidsbronnen",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Maak Herbruikbare Uitnodiging",
"here-you-can-pre-generate": "Hier kan u vooraf een herbruikbare weergave link en een bijbehorende gast uitnodigingslink aanmaken.",
"generate-invite-link": "GENEREER DE UITNODIGINGS LINK",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Verwijder limitatie video bitrate (20mbps)",
"force-vp9-video-codec": "Forceer VP9 Video Codec (minder verstoring)",
"enable-stereo-and-pro": "Activeer Stereo en Pro HD Geluid",
"video-resolution": "Video Resolutie: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Forceer Standaard Microfoon",
"hide-screen-share": "Verberg Scherm Delen Optie",
"obfuscate_url": "Verhul originele uitnodigingslink",
"add-a-password-to-stream": " Add a password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Voeg de gast toe aan een kamer:",
"invite-group-chat-type": "Deze kamer gast kan:",
"can-see-and-hear": "Het groepsgesprek zien en horen",
"can-hear-only": "Alleen het groepsgesprek horen",
"cant-see-or-hear": "Het groepsgesprek niet horen en zien",
"share-local-video-file": "Stream Media Bestand",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Deel Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Doe een Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Blader in de handleidingen",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Wat is VDO.Ninja</h2><br>\n<li>100% <b>gratis</b>; geen downloads; geen persoonlijke gegevens verzamelen; niet inloggen</li>\n<li>Breng video van uw smartphone, laptop, computer, of van uw vrienden direct in uw OBS video stroom</li>\n<li>We gebruiken vooruitstrevende Peer-to-Peer technologie die privacy en ultra lage vertraging biedt</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Demonstratie</a> </li>\n<br><h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "Welcome. This is the control-room for the group-chat. There are different things you can use this room for:<br><br>\t<li>You can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.</li>\t<li>A group room can handle around 4 to 30 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room.</li>\t<li>Solo-views of each video are offered under videos as they load. These can be used within an OBS Browser Source.</li>\t<li>You can use the auto-mixing Group Scene, the green link, to auto arrange multiple videos for you in OBS.</li>\t<li>You can use this control room to record isolated video or audio streams, but it is an experimental feature still.</li>\t<li>Videos in the Director's room will be of low quality on purpose; to save bandwidth/CPU</li>\t<li>Guest's in the room will see each other's videos at a very limited quality to conserve bandwidth/CPU.</li>\t<li>OBS will see a guest's video in high-quality; the default video bitrate is 2500kbps.</li>\t<br>\tAs guests join, their videos will appear below. You can bring their video streams into OBS as solo-scenes or you can add them to the Group Scene.\t<br>The Group Scene auto-mixes videos that have been added to the group scene. Please note that the Auto-Mixer requires guests be manually added to it for them to appear in it; they are not added automatically.<br><br>Apple mobile devices, such as iPhones and iPads, do not fully support Video Group Chat. This is a hardware constraint.<br><br>\tFor advanced options and parameters, <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Guides-and-How-to's#urlparameters\">see the Wiki.</a>",
@@ -440,15 +354,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Verwijder limitatie video bitrate (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Demp",
"send-direct-chat": "Bericht",
"close": "close",
@@ -479,10 +391,36 @@
"force-keyframe": "Rainbow Puke",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Audio instellingen",
"advanced-camera-settings": "<i class=\"las la-cog\"></i> Geavanceerd",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Highlight",
"video-source": "Video bron",
"max-resolution": "Max Resolutie",
"balanced": "Gebalanceerd",
"smooth-cool": "Soepel en Koel",
"select-audio-source": "Selecteer Geluidsbronnen",
"select-output-source": " Audio Output Destination: \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Open in nieuw tabblad",
"copy-to-clipboard": "Kopiëren naar klembord",
"edit-url": "Edit URL manually",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Voeg groepsgesprek toe",
"rooms-allow-for": "Kamers maken eenvoudige groepsgespreken en geavanceerd beheer van meerdere streams tegelijkertijd mogelijk.",
"room-name": "Kamer Naam",
"password-input-field": "Password",
"guests-only-see-director": "Gasten kunnen alleen de directors video zien",
"scenes-can-see-director": "Director is ook een gast",
"default-codec-select": "Geprefereerde Video Codec: ",
"enter-the-rooms-control": "Ga de Kamer's Controle Centrum in",
"show-tips": "Toon me wat tips..",
"added-notes": "\n<u><i>Notities:</i></u>\n<li>Iedereen kan de kamer binnenkomen als ze de naam kennen, dus hou hem uniek</li>\n<li>Meer dan vier (4) mensen in een kamer is niet aan te raden vanwege prestatie redenen, maar is afhankelijk van uw hardware.</li>\n<li>Bij iOS apparaten is de video alleen zichtbaar voor de regiseur. Dit is een hardware beperking.</li>\n<li>De \"Opname\" optie is nieuw en is experimenteel.</li>\n<li>U moet een video stroom \"Toevoegen\" aan de \"Groeps Scene\" om het hier te tonen.</li>\n<li>Er is een nieuwe \"uitgebreid volledig scherm\" knop toegevoegd aan het Gasten scherm.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Terug",
"add-your-camera": "Voeg je Camera toe",
"ask-for-permissions": "Geef toestemming voor gebruik Camera/Microfoon",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Geen Geluid",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Deel externe scherm",
"select-screen-to-share": "SELECTEER SCHERM OM TE DELEN",
"audio-sources": "Geluidsbronnen",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Maak Herbruikbare Uitnodiging",
"here-you-can-pre-generate": "Hier kan u vooraf een herbruikbare weergave link en een bijbehorende gast uitnodigingslink aanmaken.",
"generate-invite-link": "GENEREER DE UITNODIGINGS LINK",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Forceer VP9 Video Codec (minder verstoring)",
"enable-stereo-and-pro": "Activeer Stereo en Pro HD Geluid",
"video-resolution": "Video Resolutie: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Forceer Standaard Microfoon",
"hide-screen-share": "Verberg Scherm Delen Optie",
"obfuscate_url": "Verhul originele uitnodigingslink",
"add-a-password-to-stream": " Add a password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Voeg de gast toe aan een kamer:",
"invite-group-chat-type": "Deze kamer gast kan:",
"can-see-and-hear": "Het groepsgesprek zien en horen",
"can-hear-only": "Alleen het groepsgesprek horen",
"cant-see-or-hear": "Het groepsgesprek niet horen en zien",
"share-local-video-file": "Stream Media Bestand",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Deel Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Doe een Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Blader in de handleidingen",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>Wat is VDO.Ninja</h2><br>\n<li>100% <b>gratis</b>; geen downloads; geen persoonlijke gegevens verzamelen; niet inloggen</li>\n<li>Breng video van uw smartphone, laptop, computer, of van uw vrienden direct in uw OBS video stroom</li>\n<li>We gebruiken vooruitstrevende Peer-to-Peer technologie die privacy en ultra lage vertraging biedt</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Demonstratie</a> </li>\n<br><h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Wachten op het Laden van de Camera",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -574,7 +583,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START",
"note-share-audio": "\n\t<b>Noot</b>: Vergeet niet op \"Deel geluid\" te klikken in Chrome.<br>(Firefox ondersteung geen geluid delen.)",
"record": "Neem op",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "Ga binnen met een kamer naam",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Type hier om te chatten",
"enter-a-room-name-here": "Geef hier een kamer naam op",
"optional-room-password-here": "Optionele wachtwoord voor kamer",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Geef de media bron een naam (optioneel)",
"add-an-optional-password": "Voeg optioneel wachtwoord toe",
"enter-room-name-here": "Geef hier de kamer naam op",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here"
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Geef hier een kamer naam op",
"optional-room-password-here": "Optionele wachtwoord voor kamer",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Geef de media bron een naam (optioneel)",
"add-an-optional-password": "Voeg optioneel wachtwoord toe",
"enter-room-name-here": "Geef hier de kamer naam op"
},
"miscellaneous": {
"new-display-name": "Enter a new Display Name for this stream",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "oin roomJay",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "oad URLLay",
"number-of-outbound-connections": "umber of outbound connectionsNay",
"number-of-outbound-audio-streams": "umber of outbound audio streamsNay",
"number-of-outbound-video-streams": "umber of outbound video streamsNay",
"number-of-scenes-": "umber of scenes.Nay",
"total-upload-bitrate": "otal upload bitrateTay",
"copy-link-to-clipboard": "opy link to clipboardCay",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "ave and ask to reload the current page on next site visitSay",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "ill remember the room, prompting you the next time you visit if you wish to load this director's room againWay",
@@ -34,56 +39,12 @@
"next-slide": "ext slideNay",
"record-your-stream-to-disk": "ecord your stream to diskRay",
"stop-screen-share-recording": "op screen share recordingStay",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "is is the preview of the Director's audio and video output.Thay",
"cancel-the-director-s-video-audio": "ancel the Director's Video/AudioCay",
"submit-any-error-logs": "ubmit any error logsSay",
"show-help-contact-info": "Show help contact info",
"language-options": "anguage OptionsLay",
"add-to-calendar": "o CalendarAdd tay",
"add-group-chat-to-obs": "oup ChatAdd Gray",
"generate-a-random-room-name": "enerate a random room nameGay",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "or large group rooms, this option can reduce the load on remote guests substantiallyFay",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "e director will be visible in scenes, as if a performer themselves.Thay",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "ecked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.If chay",
"which-video-codec-would-you-want-used-by-default-": "ich video codec would you want used by default?Whay",
"you-ll-enter-as-the-room-s-director": "ou'll enter as the room's directorYay",
"add-your-camera-to-obs": "our CameraAdd yay",
"right-click-this-video-for-additional-options": "ight-click this video for additional optionsRay",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "ip: Hold CTRL (command) to select Multipletay",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimentalway",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "able the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-featuresEnay",
"improve-performance-and-quality-with-this-tip": "ove performance and quality with this tipImpray",
"adjust-the-amount-of-effect-applied": "ust the amount of effect appliedAdjay",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "our Microphone to OBSAdd yay",
"remote-screenshare-into-obs": "emote ScreenshareRay",
"create-reusable-invite": "eate Reusable InviteCray",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "eal for 1080p60 gaming, if your computer and upload are up for itIday",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "etter video compression and quality at the cost of increased CPU encoding loadBay",
"disable-digital-audio-effects-and-increase-audio-bitrate": "isable digital audio-effects and increase audio bitrateDay",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "e guest will be able to select digital video effects to apply.Thay",
"the-guest-will-not-have-a-choice-over-audio-options": "e guest will not have a choice over audio-optionsThay",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "e guest will only be able to select their webcam as an optionThay",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "ode the URL so that it's harder for a guest to modify the settings.Encay",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "a password to make the stream inaccessible to those without the passwordAdd ay",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "ink for the host speaker to chat with the guest; 2-way interview chat.A lay",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "e guest to a group-chat room; it will be created automatically if needed.Add thay",
"customize-the-room-settings-for-this-guest": "ustomize the room settings for this guestCay",
"more-options": "ore OptionsMay",
"transfer-any-file": "ansfer any fileTray",
"enter-an-https-url": "er an HTTPS URLEntay",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "outube Video demoing how to do thisYay",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "ite a guest or camera source to publish into the group roomInvay",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "isabled, the invited guest will not be able to see or hear anyone in the room.If day",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "ayback the video with mono-channel audioPlay",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "ave the videos fit their respective areas, even if it means cropping a bitHay",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "ave videos be aligned with sizing designed for vertical videoHay",
"does-not-impact-scene-order-": "oes not impact scene order.Day",
"copy-this-stream-id-to-the-clipboard": "opy this Stream ID to the clipboardCay",
"minimize-this-control-box": "inimize this control boxMay",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "ick here to edit the label for this stream. Changes will propagate to all viewers of this streamClay",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "ideo packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.Vay",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "old CTRL or CMD (⌘) while clicking the video to open detailed statsHay",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "emotely change the volume of this guest; updates on release. Dbl-click to reset.Ray",
"mute-this-guest-everywhere": "ute this guest everywhereMay",
"disable-video-preview": "isable Video PreviewDay",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "emove from group 6Add/ray",
"remote-audio-settings": "emote Audio SettingsRay",
"advanced-video-settings": "anced Video SettingsAdvay",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "irect solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from hereA day",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "is guest raised their hand. Click this to clear notification.Thay",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "akes the guest out of queue mode; they will then join as a normal guest.Tay",
"add-to-scene-2": "o Scene 2Add tay",
"activate-or-reload-this-video-device-": "ivate or Reload this video device.Actay",
"tip-hold-ctrl-command-to-select-multiple": "ip: Hold CTRL (command) to select Multipletay",
"experimental": "experimentalway",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "ace Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-featuresFay",
"improve-performance-and-quality-with-this-tip": "ove performance and quality with this tipImpray",
"adjust-the-amount-of-effect-applied": "ust the amount of effect appliedAdjay",
"the-solo-view-link-of-the-director-s-video-": "e solo view link of the Director's video.Thay",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "is will reduce the gain ~80% when there is no one talking loudlyThay",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "eviously was: 1280Pray",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "old CTRL (or cmd) to lock width and height together when changing themHay",
"previously-was-720": "eviously was: 720Pray",
"previously-was-30-000030517578125": "eviously was: 30.000030517578125Pray",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "oose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become globalChay",
"draw-on-the-screen": "aw on the ScreenDray",
"ctrl-cmd-alt-d-to-toggle": "o toggleCTRL (cmd) + ALT + D tay",
@@ -214,34 +199,52 @@
"hide-this-window": "ide this windowHay",
"reload-the-page": "eload the pageRay",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "elect a location that is closest to both you and your audience.Say",
"number-of-outbound-connections": "umber of outbound connectionsNay",
"number-of-outbound-audio-streams": "umber of outbound audio streamsNay",
"number-of-outbound-video-streams": "umber of outbound video streamsNay",
"number-of-scenes-": "umber of scenes.Nay",
"total-upload-bitrate": "otal upload bitrateTay",
"add-group-chat-to-obs": "oup ChatAdd Gray",
"generate-a-random-room-name": "enerate a random room nameGay",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "or large group rooms, this option can reduce the load on remote guests substantiallyFay",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "e director will be visible in scenes, as if a performer themselves.Thay",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "ecked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.If chay",
"which-video-codec-would-you-want-used-by-default-": "ich video codec would you want used by default?Whay",
"you-ll-enter-as-the-room-s-director": "ou'll enter as the room's directorYay",
"add-your-camera-to-obs": "our CameraAdd yay",
"right-click-this-video-for-additional-options": "ight-click this video for additional optionsRay",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "able the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-featuresEnay",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "our Microphone to OBSAdd yay",
"remote-screenshare-into-obs": "emote ScreenshareRay",
"create-reusable-invite": "eate Reusable InviteCray",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "eal for 1080p60 gaming, if your computer and upload are up for itIday",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "etter video compression and quality at the cost of increased CPU encoding loadBay",
"disable-digital-audio-effects-and-increase-audio-bitrate": "isable digital audio-effects and increase audio bitrateDay",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "e guest will be able to select digital video effects to apply.Thay",
"the-guest-will-not-have-a-choice-over-audio-options": "e guest will not have a choice over audio-optionsThay",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "e guest will only be able to select their webcam as an optionThay",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "ode the URL so that it's harder for a guest to modify the settings.Encay",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "a password to make the stream inaccessible to those without the passwordAdd ay",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "ink for the host speaker to chat with the guest; 2-way interview chat.A lay",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "e guest to a group-chat room; it will be created automatically if needed.Add thay",
"customize-the-room-settings-for-this-guest": "ustomize the room settings for this guestCay",
"more-options": "ore OptionsMay",
"transfer-any-file": "ansfer any fileTray",
"enter-an-https-url": "er an HTTPS URLEntay",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "ute the SpeakerMay",
"mute-the-mic": "ute the MicMay",
"disable-the-camera": "isable the CameraDay",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "is is the preview of the Director's audio and video output.Thay",
"show-help-info": "ow Help InfoShay",
"does-not-impact-scene-order-": "oes not impact scene order.Day",
"copy-this-stream-id-to-the-clipboard": "opy this Stream ID to the clipboardCay",
"minimize-this-control-box": "inimize this control boxMay",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "ick here to edit the label for this stream. Changes will propagate to all viewers of this streamClay",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "ideo packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.Vay",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "old CTRL or CMD (⌘) while clicking the video to open detailed statsHay",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "irect solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from hereA day",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "is guest raised their hand. Click this to clear notification.Thay",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "akes the guest out of queue mode; they will then join as a normal guest.Tay",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "is will reduce the gain ~80% when there is no one talking loudlyThay",
"previously-was-0-5625": "eviously was: 0.5625Pray",
"previously-was-30-000030517578125": "eviously was: 30.000030517578125Pray",
"previously-was-720": "eviously was: 720Pray",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "old CTRL (or cmd) to lock width and height together when changing themHay",
"previously-was-1280": "eviously was: 1280Pray",
"join-by-room-name-here": "er a room name to quick joinEntay",
"create-a-secondary-stream": "Maak een tweede stream aan",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "ump to the documentationJay",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "or more known issues, click hereFay",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "ink out to the help guidelay",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "ill slowly pan, tilt, and zoom in on the first face detectedWay",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i>oad File Uplay",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "eate a RoomCray",
"rooms-allow-for": "ooms allow for group-chat and the tools to manage multiple guests.Ray",
"room-name": "oom NameRay",
"password-input-field": "asswordPay",
"guests-only-see-director": "uests can only see the Director's VideoGay",
"scenes-can-see-director": "irector will also be a performerDay",
"default-codec-select": "eferred Video Codec: Pray",
"enter-the-rooms-control": "er the Room's Control CenterEntay",
"show-tips": "ow me some tips..Shay",
"added-notes": "\n<u>\n<i>ortant Tips:Impay</i><br>\n</u>\n<li>isabling video sharing between guests will improve performanceDay</li>\n<li>ite only guests to the room that you trust.Invay</li>\n<li>e \"Recording\" option is considered experimental.Thay</li>",
"looking-to-just-chat-and-not-direct": "ooking to just chat and not direct?Lay",
"join-the-room-basic": "oin room as participantJay",
"back": "ackBay",
"add-your-camera": "our CameraAdd yay",
"ask-for-permissions": "ow Access to Camera/MicrophoneAllay",
"waiting-for-camera": "aiting for Camera to LoadWay",
"privacy-disabled": "ivacy warning: The director will be able to remotely change your camera, microphone, and URL while this page is open, if you continue.Pray",
"for-the-best-possible-experience-make-sure": "or the best possible experience, make sureFay",
"your-device-is-powered": "our device is poweredYay",
"your-connection-is-hardwired-instead-of-wifi": "our connection is hardwired instead of wifiYay",
"you-are-using-headphones-earphones": "ou are using headphones / earphonesYay",
"video-source": "ideo Source Vay",
"up-to-4k": "4K",
"max-resolution": "ax ResolutionMay",
"balanced": "alancedBay",
"smooth-cool": "ooth and CoolSmay",
"select-audio-source": "udio Source(s) Aay",
"no-audio": "o AudioNay",
"select-output-source": "udio Output Destination: Aay",
"select-avatar-image": "efault Avatar / Placeholder Image: Day",
"select-digital-effect": "igital Video Effects: Day",
"no-effects-applied": "o effects appliedNay",
"blurred-background": "urred backgroundBlay",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "igital greenscreenDay",
"virtual-background": "irtual backgroundVay",
"face-mesh": "ace mesh (slow load)Fay",
"digital-zoom": "igital zoomDay",
"anonymous-mask": "onymous maskAnay",
"dog-face": "og ears and noseDay",
"face-tracker": "ace trackerFay",
"add-a-password": "a Password: Add ay",
"use-chrome-instead": "onsider using a Chromium-based browser instead.Cay<br>afari is more prone to having audio issues\n Say",
"update-your-device": "e've detected that you are using an old version of Apple iOS, which is known to have many issues.Way<br><br>ease consider updating.Play",
"add-your-microphone": "our Microphone to OBSAdd yay",
"remote-screenshare-obs": "emote ScreenshareRay",
"select-screen-to-share": "SELECT SCREEN TO SHAREay",
"audio-sources": "udio SourcesAay",
"application-audio-capture": "",
"1080p-screen-capture-guide": "or achieving 1080p60 game-capture, Fay<a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" target=\"_blank\">ee heresay</a>",
"create-reusable-invite": "eate Reusable InviteCray",
"here-you-can-pre-generate": "ere you can pre-generate a reusable Browser Source link and a related guest invite link.Hay",
"generate-invite-link": "GENERATE THE INVITE LINKay",
"quality-paramaters": "uality settingsQay",
"unlock-video-bitrate": "ock Video Bitrate (20mbps)Unlay",
"force-vp9-video-codec": "orce VP9 Video CodecFay",
"enable-stereo-and-pro": "able Stereo and Pro HD AudioEnay",
"video-resolution": "ideo Resolution: Vay",
"general-paramaters": "er optionsUsay",
"allow-effects-invite": "ow video effects to be usedAllay",
"hide-mic-selection": "orce Default MicrophoneFay",
"hide-screen-share": "ide Screenshare OptionHay",
"obfuscate_url": "uscate the Invite URLObfay",
"add-a-password-to-stream": "a password: Add ay",
"interview-paramaters": "o-way chatTway",
"generate-host-link": "eate a link for the host speakerCray",
"add-the-guest-to-a-room": "e guest to a room: Add thay",
"invite-group-chat-type": "is room guest can:Thay",
"can-see-and-hear": "an see and hear the group chatCay",
"can-hear-only": "an only hear the group chatCay",
"cant-see-or-hear": "annot hear or see the group chatCay",
"share-local-video-file": "eam Media FileStray",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHAREay",
"share-website-iframe": "are WebsiteShay",
"enter-the-website-URL-you-wish-to-share": "er the URL website you wish to share.Entay",
"run-a-speed-test": "un a Speed TestRay",
"try-the-mixer-out": "out the MixerTry ay",
"try-out-versus-cam": "ulti-Stream MonitorMay",
"voice-comms-app": "oup Voice CommsGray",
"read-the-guides": "owse the GuidesBray",
"wizard-link-generator": "izard Link GeneratorWay",
"get-full-documentation": "ull DocumentationFay",
"get-the-source-code": "ource CodeSay",
"show-your-support": "ow Your SupportShay",
"publish-via-whip": "ublish via WHIPPay",
"share-whepsrc": "are via WHEPShay",
"enter-the-whep-URL-you-wish-to-share": "er the WHEP URL you wish to share.Entay",
"info-blob": "\n<h2>at is VDO.NinjaWhay</h2>\n<br>\n<li>100% ay<b>eefray</b>o downloads; no personal data collection; no sign-in; nay</li>\n<li>ing live video from your smartphone, remote computer, or friends directly into OBS or other studio software.Bray</li>\n<li>e use cutting edge Peer-to-Peer forwarding technology that offers privacy and ultra-low latencyWay</li>\n<br>\n<li>outube video \nYay<i class=\"lab la-youtube\"></i>\n<a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Youtube video demoing VDO.Ninja\">emoing it hereDay</a>\n</li>\n<br><h3>or support, see the \n 🛠 Fay<a href=\"https://www.reddit.com/r/VDONinja/\">ub-reddit say<i class=\"lab la-reddit-alien\"></i></a>or join the ay<a href=\"https://discord.vdo.ninja/\">iscord Day<i class=\"lab la-discord\"></i></a>e . Thay<a href=\"https://docs.vdo.ninja/\">ocumentation is hereday</a>and my personal email is ay<i>eve@seguin.emailstay</i>\n</h3> \n\n",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)ay",
"click-here-for-help": "ick Here for a quick overview and helpClay",
"welcome-to-control-room": "\n<b>elcome. This is the director's control-room for the group-chat.Way</b><br><br>ou can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.\n\nYay<br><br>oup room can handle normally around 6 to 20 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room\n\nA gray",
@@ -440,15 +354,13 @@
"fade-videos-in": "ade videos inFay",
"animate-mixing": "imate mixingAnay",
"add-margin": "argin to videosAdd may",
"unlock-video-bitrate": "ock Video Bitrate (20mbps)Unlay",
"disable-downscaling": "ease sharpnessIncray",
"force-mono-audio": "orce mono audioFay",
"fill-video-space": "op video to fitCray",
"vertical-aspect-ratio": "ertical video modeVay",
"learn-more-about-params": "earn more about URL parameters at Lay",
"guest-1": "uest 1Gay",
"guest-2": "uest 2Gay",
"guest-3": "uest 3Gay",
"guest-4": "uest 4Gay",
"add-a-label": "a labelAdd ay",
"mute": "uteMay",
"send-direct-chat": "essageMay",
"close": "oseclay",
@@ -479,10 +391,36 @@
"force-keyframe": "ainbow Puke FixRay",
"advanced-audio-settings": "udioAay",
"advanced-camera-settings": "ideoVay",
"user-raised-hand": "ower Raised HandLay",
"remove-from-queue": "ivate GuestActay",
"record-director-local": "ecord Ray",
"solo-video-director": "ighlightHay",
"video-source": "ideo Source Vay",
"max-resolution": "ax ResolutionMay",
"balanced": "alancedBay",
"smooth-cool": "ooth and CoolSmay",
"select-audio-source": "udio Source(s) Aay",
"select-output-source": "udio Output Destination: Aay",
"select-avatar-image": "efault Avatar / Placeholder Image: Day",
"select-digital-effect": "igital Video Effects: Day",
"no-effects-applied": "o effects appliedNay",
"blurred-background": "urred backgroundBlay",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "igital greenscreenDay",
"virtual-background": "irtual backgroundVay",
"face-mesh": "ace mesh (slow load)Fay",
"digital-zoom": "igital zoomDay",
"anonymous-mask": "onymous maskAnay",
"dog-face": "og ears and noseDay",
"face-tracker": "ace trackerFay",
"close-settings": "ose SettingsClay",
"user": "erUsay",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "en in new TabOpay",
"copy-to-clipboard": "opy to ClipboardCay",
"edit-url": "it URL manuallyEday",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "o Outlook CalendarAdd tay",
"add-to-yahoo-calendar": "o Yahoo CalendarAdd tay",
"reload-page": "efreshRay",
"add-a-label": "a labelAdd ay",
"user-raised-hand": "ower Raised HandLay",
"remove-from-queue": "ivate GuestActay",
"add-group-chat": "eate a RoomCray",
"rooms-allow-for": "ooms allow for group-chat and the tools to manage multiple guests.Ray",
"room-name": "oom NameRay",
"password-input-field": "asswordPay",
"guests-only-see-director": "uests can only see the Director's VideoGay",
"scenes-can-see-director": "irector will also be a performerDay",
"default-codec-select": "eferred Video Codec: Pray",
"enter-the-rooms-control": "er the Room's Control CenterEntay",
"show-tips": "ow me some tips..Shay",
"added-notes": "\n<u>\n<i>ortant Tips:Impay</i><br>\n</u>\n<li>isabling video sharing between guests will improve performanceDay</li>\n<li>ite only guests to the room that you trust.Invay</li>\n<li>e \"Recording\" option is considered experimental.Thay</li>",
"looking-to-just-chat-and-not-direct": "ooking to just chat and not direct?Lay",
"join-the-room-basic": "oin room as participantJay",
"back": "ackBay",
"add-your-camera": "our CameraAdd yay",
"ask-for-permissions": "ow Access to Camera/MicrophoneAllay",
"start": "STARTay",
"privacy-disabled": "ivacy warning: The director will be able to remotely change your camera, microphone, and URL while this page is open, if you continue.Pray",
"for-the-best-possible-experience-make-sure": "or the best possible experience, make sureFay",
"your-device-is-powered": "our device is poweredYay",
"your-connection-is-hardwired-instead-of-wifi": "our connection is hardwired instead of wifiYay",
"you-are-using-headphones-earphones": "ou are using headphones / earphonesYay",
"up-to-4k": "4K",
"no-audio": "o AudioNay",
"add-a-password": "a Password: Add ay",
"use-chrome-instead": "onsider using a Chromium-based browser instead.Cay<br>afari is more prone to having audio issues\n Say",
"update-your-device": "e've detected that you are using an old version of Apple iOS, which is known to have many issues.Way<br><br>ease consider updating.Play",
"add-your-microphone": "our Microphone to OBSAdd yay",
"remote-screenshare-obs": "emote ScreenshareRay",
"select-screen-to-share": "SELECT SCREEN TO SHAREay",
"audio-sources": "udio SourcesAay",
"application-audio-capture": "",
"1080p-screen-capture-guide": "or achieving 1080p60 game-capture, Fay<a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" target=\"_blank\">ee heresay</a>",
"create-reusable-invite": "eate Reusable InviteCray",
"here-you-can-pre-generate": "ere you can pre-generate a reusable Browser Source link and a related guest invite link.Hay",
"generate-invite-link": "GENERATE THE INVITE LINKay",
"quality-paramaters": "uality settingsQay",
"force-vp9-video-codec": "orce VP9 Video CodecFay",
"enable-stereo-and-pro": "able Stereo and Pro HD AudioEnay",
"video-resolution": "ideo Resolution: Vay",
"general-paramaters": "er optionsUsay",
"allow-effects-invite": "ow video effects to be usedAllay",
"hide-mic-selection": "orce Default MicrophoneFay",
"hide-screen-share": "ide Screenshare OptionHay",
"obfuscate_url": "uscate the Invite URLObfay",
"add-a-password-to-stream": "a password: Add ay",
"interview-paramaters": "o-way chatTway",
"generate-host-link": "eate a link for the host speakerCray",
"add-the-guest-to-a-room": "e guest to a room: Add thay",
"invite-group-chat-type": "is room guest can:Thay",
"can-see-and-hear": "an see and hear the group chatCay",
"can-hear-only": "an only hear the group chatCay",
"cant-see-or-hear": "annot hear or see the group chatCay",
"share-local-video-file": "eam Media FileStray",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHAREay",
"share-website-iframe": "are WebsiteShay",
"enter-the-website-URL-you-wish-to-share": "er the URL website you wish to share.Entay",
"run-a-speed-test": "un a Speed TestRay",
"try-the-mixer-out": "out the MixerTry ay",
"try-out-versus-cam": "ulti-Stream MonitorMay",
"voice-comms-app": "oup Voice CommsGray",
"read-the-guides": "owse the GuidesBray",
"wizard-link-generator": "izard Link GeneratorWay",
"get-full-documentation": "ull DocumentationFay",
"get-the-source-code": "ource CodeSay",
"show-your-support": "ow Your SupportShay",
"publish-via-whip": "ublish via WHIPPay",
"share-whepsrc": "are via WHEPShay",
"enter-the-whep-URL-you-wish-to-share": "er the WHEP URL you wish to share.Entay",
"info-blob": "\n<h2>at is VDO.NinjaWhay</h2>\n<br>\n<li>100% ay<b>eefray</b>o downloads; no personal data collection; no sign-in; nay</li>\n<li>ing live video from your smartphone, remote computer, or friends directly into OBS or other studio software.Bray</li>\n<li>e use cutting edge Peer-to-Peer forwarding technology that offers privacy and ultra-low latencyWay</li>\n<br>\n<li>outube video \nYay<i class=\"lab la-youtube\"></i>\n<a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Youtube video demoing VDO.Ninja\">emoing it hereDay</a>\n</li>\n<br><h3>or support, see the \n 🛠 Fay<a href=\"https://www.reddit.com/r/VDONinja/\">ub-reddit say<i class=\"lab la-reddit-alien\"></i></a>or join the ay<a href=\"https://discord.vdo.ninja/\">iscord Day<i class=\"lab la-discord\"></i></a>e . Thay<a href=\"https://docs.vdo.ninja/\">ocumentation is hereday</a>and my personal email is ay<i>eve@seguin.emailstay</i>\n</h3> \n\n",
"guest-1": "uest 1Gay",
"guest-2": "uest 2Gay",
"guest-3": "uest 3Gay",
"guest-4": "uest 4Gay",
"waiting-for-camera": "aiting for Camera to LoadWay",
"local-global-record": "ocal record - stop allLay",
"ok": "✔ OK",
"join-room": "Join room",
@@ -574,7 +583,6 @@
"guest-toggle": "uest ToggleGay",
"settings": "ettingsSay",
"more": "oreMay",
"start": "STARTay",
"note-share-audio": "\n\t<b>Noot</b>: Vergeet niet op \"Deel geluid\" te klikken in Chrome.<br>(Firefox ondersteung geen geluid delen.)",
"record": "Neem op",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "oin by Room Name hereJay",
"load-a-website-url": "oad a website URLLay",
"enter-chat-message-to-send-here": "er chat message to send hereEntay",
"enter-a-room-name-here": "er a Room Name hereEntay",
"optional-room-password-here": "ional room password hereOptay",
"optional": "optionalway",
"give-this-media-source-a-name-optional-": "ive this media source a name (optional)Gay",
"add-an-optional-password": "an optional passwordAdd ay",
"enter-room-name-here": "er Room name hereEntay",
"enter-your-message-here": "er your message hereEntay",
"press-a-key-here": "ess a key herepray",
"enter-a-url-for-the-sidebar-page": "er a URL for the sidebar pageEntay",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "uthentication Bearer Token (optional)🗝️ Aay",
"enter-the-remote-obs-password-here": "er the remote OBS password hereEntay",
"enter-the-room-name-here": "er the room name hereEntay",
"enter-the-room-password-here": "er the room password hereEntay"
"enter-the-room-password-here": "er the room password hereEntay",
"enter-a-room-name-here": "er a Room Name hereEntay",
"optional-room-password-here": "ional room password hereOptay",
"optional": "optionalway",
"give-this-media-source-a-name-optional-": "ive this media source a name (optional)Gay",
"add-an-optional-password": "an optional passwordAdd ay",
"enter-room-name-here": "er Room name hereEntay"
},
"miscellaneous": {
"new-display-name": "er a new Display Name for this streamEntay",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Entrar na sala",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Número de conexões de saída",
"number-of-outbound-audio-streams": "Número de fluxos de áudio de saída",
"number-of-outbound-video-streams": "Número de streams de vídeo de saída",
"number-of-scenes-": "Número de cenas.",
"total-upload-bitrate": "Taxa de bits total de upload",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Lembrará da sala, avisando na próxima vez que você visitar se deseja carregar a sala deste diretor novamente",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Gravar sua transmissão no disco",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Cancelar o vídeo/áudio do diretor",
"submit-any-error-logs": "Enviar qualquer registro de erros",
"show-help-contact-info": "Show help contact info",
"language-options": "Opções de idioma",
"add-to-calendar": "Adicionar ao calendário",
"add-group-chat-to-obs": "Adicionar bate-papo em grupo",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Para salas de grupos grandes, esta opção pode reduzir substancialmente a carga de convidados remotos",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "O diretor será visível nas cenas, como se fosse um convidado.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Se marcado, o diretor pode ser adicionado às cenas como se fosse um convidado. Caso contrário, o diretor nunca aparecerá em uma cena.",
"which-video-codec-would-you-want-used-by-default-": "Qual codec de vídeo você gostaria que fosse usado por padrão?",
"you-ll-enter-as-the-room-s-director": "Você entrará como diretor da sala",
"add-your-camera-to-obs": "Adicione sua câmera",
"right-click-this-video-for-additional-options": "Clique com o botão direito do mouse neste vídeo para opções adicionais",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "Dica: segure CTRL (command) para selecionar vários",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Melhore o desempenho e a qualidade com esta dica",
"adjust-the-amount-of-effect-applied": "Ajuste a quantidade de efeito aplicado",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Compartilhamento de tela remoto",
"create-reusable-invite": "Criar convite reutilizável",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal para jogos em 1080p60, se o seu computador e o upload estiverem prontos para isso",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Melhor compressão e qualidade de vídeo ao custo de maior carga de codificação da CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Desative os efeitos de áudio digital e aumente a taxa de bits do áudio",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "O convidado poderá selecionar efeitos de vídeo digital para aplicar.",
"the-guest-will-not-have-a-choice-over-audio-options": "O convidado não terá escolha sobre as opções de áudio",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "O convidado só poderá selecionar sua webcam como uma opção",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Codifique a URL para que seja mais difícil para um convidado modificar as configurações.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Adicione uma senha para tornar a transmissão inacessível para aqueles sem a senha",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Adicione o convidado a uma sala de bate-papo em grupo; será criada automaticamente, se necessário.",
"customize-the-room-settings-for-this-guest": "Personalize as configurações da sala para este convidado",
"more-options": "Mais opções",
"transfer-any-file": "Transfira qualquer arquivo",
"enter-an-https-url": "Insira uma URL HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Vídeo do YouTube demonstrando como fazer isto",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Convidar uma pessoa ou fonte de câmera para publicar na sala do grupo",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "Caso desabilitado, o convidado não poderá ver ou ouvir ninguém na sala.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Reproduza o vídeo com áudio monocanal",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Faça com que os vídeos se encaixem em suas respectivas áreas, mesmo que isso signifique cortar um pouco",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Faça com que os vídeos sejam alinhados com o dimensionamento projetado para vídeo vertical",
"does-not-impact-scene-order-": "Não afeta a ordem da cena.",
"copy-this-stream-id-to-the-clipboard": "Copie este identificador de transmissão para a área de transferência",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Editar o marcador desta transmissão. As alterações serão propagadas para todos os espectadores desta transmissão",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Indicador de perda de pacote de vídeo de visualização de vídeo; verde é bom, vermelho é ruim. A chama indica que a CPU está sobrecarregada. Pode não refletir a perda de pacotes vista por cenas ou outros convidados.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Segure CTRL (CMD) enquanto clica no vídeo para abrir estatísticas detalhadas",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Silenciar este convidado em todos os lugares",
"disable-video-preview": "Desativar visualização de vídeo",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Adicionar/remover do grupo 6",
"remote-audio-settings": "Configurações de áudio remoto",
"advanced-video-settings": "Configurações avançadas de vídeo",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Isso pedirá permissão ao convidado remoto para alterar",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Uma visão isolada direta da transmissão de vídeo/áudio com nada mais. Seu áudio pode ser controlado remotamente a partir daqui",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Este convidado levantou a mão. Limpar a notificação.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Adicionar à cena 2",
"activate-or-reload-this-video-device-": "Ative ou recarregue este dispositivo de vídeo.",
"tip-hold-ctrl-command-to-select-multiple": "Dica: segure CTRL (command) para selecionar vários",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Melhore o desempenho e a qualidade com esta dica",
"adjust-the-amount-of-effect-applied": "Ajuste a quantidade de efeito aplicado",
"the-solo-view-link-of-the-director-s-video-": "O link de visualização isolada do vídeo do diretor.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Anteriormente era: 1.7777777777777777",
"previously-was-1280": "Anteriormente era: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Segure CTRL (CMD) para travar a largura e a altura juntas ao alterá-las",
"previously-was-720": "Anteriormente era: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Ocultar esta janela",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Número de conexões de saída",
"number-of-outbound-audio-streams": "Número de fluxos de áudio de saída",
"number-of-outbound-video-streams": "Número de streams de vídeo de saída",
"number-of-scenes-": "Número de cenas.",
"total-upload-bitrate": "Taxa de bits total de upload",
"add-group-chat-to-obs": "Adicionar bate-papo em grupo",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Para salas de grupos grandes, esta opção pode reduzir substancialmente a carga de convidados remotos",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "O diretor será visível nas cenas, como se fosse um convidado.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Se marcado, o diretor pode ser adicionado às cenas como se fosse um convidado. Caso contrário, o diretor nunca aparecerá em uma cena.",
"which-video-codec-would-you-want-used-by-default-": "Qual codec de vídeo você gostaria que fosse usado por padrão?",
"you-ll-enter-as-the-room-s-director": "Você entrará como diretor da sala",
"add-your-camera-to-obs": "Adicione sua câmera",
"right-click-this-video-for-additional-options": "Clique com o botão direito do mouse neste vídeo para opções adicionais",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Compartilhamento de tela remoto",
"create-reusable-invite": "Criar convite reutilizável",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal para jogos em 1080p60, se o seu computador e o upload estiverem prontos para isso",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Melhor compressão e qualidade de vídeo ao custo de maior carga de codificação da CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Desative os efeitos de áudio digital e aumente a taxa de bits do áudio",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "O convidado poderá selecionar efeitos de vídeo digital para aplicar.",
"the-guest-will-not-have-a-choice-over-audio-options": "O convidado não terá escolha sobre as opções de áudio",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "O convidado só poderá selecionar sua webcam como uma opção",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Codifique a URL para que seja mais difícil para um convidado modificar as configurações.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Adicione uma senha para tornar a transmissão inacessível para aqueles sem a senha",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Adicione o convidado a uma sala de bate-papo em grupo; será criada automaticamente, se necessário.",
"customize-the-room-settings-for-this-guest": "Personalize as configurações da sala para este convidado",
"more-options": "Mais opções",
"transfer-any-file": "Transfira qualquer arquivo",
"enter-an-https-url": "Insira uma URL HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Silenciar o palestrante",
"mute-the-mic": "Silenciar o microfone",
"disable-the-camera": "Desabilitar a câmera",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Exibir informações de ajuda",
"does-not-impact-scene-order-": "Não afeta a ordem da cena.",
"copy-this-stream-id-to-the-clipboard": "Copie este identificador de transmissão para a área de transferência",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Editar o marcador desta transmissão. As alterações serão propagadas para todos os espectadores desta transmissão",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Indicador de perda de pacote de vídeo de visualização de vídeo; verde é bom, vermelho é ruim. A chama indica que a CPU está sobrecarregada. Pode não refletir a perda de pacotes vista por cenas ou outros convidados.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Segure CTRL (CMD) enquanto clica no vídeo para abrir estatísticas detalhadas",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Isso pedirá permissão ao convidado remoto para alterar",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Uma visão isolada direta da transmissão de vídeo/áudio com nada mais. Seu áudio pode ser controlado remotamente a partir daqui",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Este convidado levantou a mão. Limpar a notificação.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Anteriormente era: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Segure CTRL (CMD) para travar a largura e a altura juntas ao alterá-las",
"previously-was-1280": "Anteriormente era: 1280",
"join-by-room-name-here": "Informe um nome de sala para entrar rapidamente",
"create-a-secondary-stream": "Criar uma transmissão secundária",
"share-a-website-as-an-embedded-iframe": "Compartilhar um site como um iFrame embutido",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Ir para a documentação",
"100-battery-remaining": "100% de bateria restante",
"for-more-known-issues-click-here": "See more known issues",
"previously-was-1-7777777777777777": "Anteriormente era: 1.7777777777777777",
"previously-was-29-970029830932617": "Anteriormente era: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -287,7 +289,6 @@
"set-to-default-audio-channel": "Definir para Canal de áudio por omissão",
"set-to-audio-channel-7": "Definir Canal de áudio 7",
"set-to-audio-channel-8": "Definir Canal de áudio 8",
"100-charging": "100% charging",
"this-will-reconnect-the-guest-s-active-video-source-": "This will reconnect the guest's active video source."
},
"innerHTML": {
@@ -303,94 +304,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Criar uma sala",
"rooms-allow-for": "As salas permitem bate-papo em grupo e as ferramentas para gerenciar vários convidados.",
"room-name": "Nome da sala",
"password-input-field": "Senha",
"guests-only-see-director": "Os convidados só podem ver o vídeo do diretor",
"scenes-can-see-director": "Diretor também será um participante",
"default-codec-select": "Codec de vídeo preferido: ",
"enter-the-rooms-control": "Entre no centro de controle da sala",
"show-tips": "Mostre-me algumas dicas...",
"added-notes": "\n<u>\n<i>Dicas importantes:</i><br><br>\n</u>\n<li>Desativar o compartilhamento de vídeo entre convidados melhorará o desempenho</li>\n<li>Convide para a sala apenas pessoas que você confia.</li>\n<li>A opção de \"Gravação\" é considerada experimental.</li>\n<li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>Parâmetros de URL avançados</u></a> estão disponíveis para personalizar as salas.</li>\n",
"looking-to-just-chat-and-not-direct": "Procurando apenas por bate-papo e não mensagem diretamente?",
"join-the-room-basic": "Entrar na sala como participante",
"back": "Voltar",
"add-your-camera": "Adicione sua câmera",
"ask-for-permissions": "Permitir acesso à câmera/microfone",
"waiting-for-camera": "Aguardando o carregamento da câmera",
"privacy-disabled": "Aviso de privacidade: o diretor poderá acessar remotamente sua câmera e microfone se você continuar.",
"for-the-best-possible-experience-make-sure": "Para a melhor experiência possível, certifique-se",
"your-device-is-powered": "Seu dispositivo está energizado",
"your-connection-is-hardwired-instead-of-wifi": "Sua conexão é cabeada em vez de Wi-Fi",
"you-are-using-headphones-earphones": "Você está usando headphones/fones de ouvido",
"video-source": " Fonte de vídeo ",
"up-to-4k": "4K",
"max-resolution": "Resolução máxima",
"balanced": "Equilibrado",
"smooth-cool": "Suave e Calmo",
"select-audio-source": " Fonte(s) de áudio ",
"no-audio": "Sem áudio",
"select-output-source": " Destino de saída de áudio: ",
"select-avatar-image": " Avatar padrão / Imagem alternativa: ",
"select-digital-effect": " Efeitos de vídeo digital: ",
"no-effects-applied": "Nenhum efeito aplicado",
"blurred-background": "Fundo desfocado",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Tela verde digital",
"virtual-background": "Plano de fundo virtual",
"face-mesh": "Malha de rosto (carga lenta)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Máscara anônima",
"dog-face": "Orelhas e nariz de cachorro",
"face-tracker": "Face tracker",
"add-a-password": " Adicione uma senha:",
"use-chrome-instead": "Considere usar um navegador baseado em Chromium.<br>\n O Safari é mais propenso a ter problemas de áudio",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Compartilhamento de tela remoto",
"select-screen-to-share": "SELECIONAR A TELA PARA COMPARTILHAR",
"audio-sources": "Fontes de áudio",
"application-audio-capture": "<a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">Captura de áudio específica de aplicativo</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Criar convite reutilizável",
"here-you-can-pre-generate": "Aqui você pode pré-gerar um link de fonte do navegador reutilizável e um link de convite relacionado.",
"generate-invite-link": "GERAR O LINK DE CONVITE",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Desbloquear taxa de bits de vídeo (20mbps)",
"force-vp9-video-codec": "Forçar codec de vídeo VP9",
"enable-stereo-and-pro": "Ativar áudio estéreo e profissional HD",
"video-resolution": "Resolução de vídeo: ",
"general-paramaters": "User options",
"allow-effects-invite": "Permitir que efeitos de vídeo sejam usados",
"hide-mic-selection": "Forçar microfone padrão",
"hide-screen-share": "Ocultar opção de compartilhamento de tela",
"obfuscate_url": "Ofuscar o URL de convite",
"add-a-password-to-stream": " Adicione uma senha:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Adicione o convidado a uma sala:",
"invite-group-chat-type": "Este convidado da sala pode:",
"can-see-and-hear": "Pode ver e ouvir o bate-papo em grupo",
"can-hear-only": "Pode somente ouvir o bate-papo em grupo",
"cant-see-or-hear": "Não é possível ouvir ou ver o bate-papo em grupo",
"share-local-video-file": "Arquivo de mídia de transmissão",
"select-the-video-files-to-share": "SELECIONE OS ARQUIVOS DE VÍDEO PARA COMPARTILHAR",
"share-website-iframe": "Compartilhar site",
"enter-the-website-URL-you-wish-to-share": "Insira a URL do site que você deseja compartilhar.",
"run-a-speed-test": "Faça um teste de velocidade",
"try-the-mixer-out": "Experimente o mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Navegue pelos guias",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Documentação completa",
"get-the-source-code": "Código-fonte",
"show-your-support": "Mostre seu apoio",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>O que é o VDO.Ninja</h2>\n<br>\n<li>100% <b>gratuito</b>; sem downloads; sem coleta de dados pessoais; sem login</li>\n<li>Traga vídeo ao vivo do seu smartphone, computador remoto ou amigos diretamente para o OBS ou outro software de estúdio.</li>\n<li>Usamos tecnologia de encaminhamento peer-to-peer de ponta que oferece privacidade e latência ultrabaixa</li>\n<br>\n<li>\n<i class=\"lab la-youtube\"></i>\n<a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Vídeo do YouTube demonstrando o VDO.Ninja\">Demonstração de uso do VDO.Ninja</a>\n</li>\n\n<br>\n<br>\n<h3>\n 🛠 Para suporte, veja o <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> ou participe do <a href=\"https://discord.gg/T4xpQVv\">Discord <i class=\"lab la-discord\"></i></a>. Consulte também a <a href=\"https://docs.vdo.ninja/\">documentação</a> e meu e-mail pessoal é <i>steve@seguin.email</i>\n</h3> \n\n",
"hide-the-links": " LINKS (CONVITES &amp; CENAS)",
"click-here-for-help": "Visão geral rápida e ajuda",
"welcome-to-control-room": "\n<b>Bem-vindo. Esta é a sala de controle do diretor para o bate-papo em grupo.</b><br><br>\nVocê pode hospedar um bate-papo em grupo com amigos usando uma sala. Compartilhe o link azul para convidar as pessoas que participarão do bate-papo automaticamente.\n<br><br>\nUma sala de grupo pode lidar normalmente com cerca de 6 a 20 convidados, dependendo de vários fatores, incluindo CPU e largura de banda disponível de todos os convidados na sala\n",
@@ -442,15 +355,13 @@
"fade-videos-in": "Exibir vídeos gradualmente",
"animate-mixing": "Mistura de animação",
"add-margin": "Adicionar margem aos vídeos",
"unlock-video-bitrate": "Desbloquear taxa de bits de vídeo (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Forçar áudio mono",
"fill-video-space": "Cortar vídeo para caber",
"vertical-aspect-ratio": "Modo de vídeo vertical",
"learn-more-about-params": "Saiba mais sobre parâmetros de URL em ",
"guest-1": "Convidado 1",
"guest-2": "Convidado 2",
"guest-3": "Convidado 3",
"guest-4": "Convidado 4",
"add-a-label": "Add a label",
"mute": "Mute",
"send-direct-chat": "Mensagem",
"close": "fechar",
@@ -481,10 +392,36 @@
"force-keyframe": "Correção de vômito arco-íris",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Configurações de áudio",
"advanced-camera-settings": "<i class=\"las la-sliders-h\"></i> Configurações de vídeo",
"user-raised-hand": "Abaixar a mão levantada",
"remove-from-queue": "Activate Guest",
"record-director-local": " Gravar",
"solo-video-director": "Highlight",
"video-source": " Fonte de vídeo ",
"max-resolution": "Resolução máxima",
"balanced": "Equilibrado",
"smooth-cool": "Suave e Calmo",
"select-audio-source": " Fonte(s) de áudio ",
"select-output-source": " Destino de saída de áudio: ",
"select-avatar-image": " Avatar padrão / Imagem alternativa: ",
"select-digital-effect": " Efeitos de vídeo digital: ",
"no-effects-applied": "Nenhum efeito aplicado",
"blurred-background": "Fundo desfocado",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Tela verde digital",
"virtual-background": "Plano de fundo virtual",
"face-mesh": "Malha de rosto (carga lenta)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Máscara anônima",
"dog-face": "Orelhas e nariz de cachorro",
"face-tracker": "Face tracker",
"close-settings": "Fechar configurações",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Abrir em nova guia",
"copy-to-clipboard": "Copiar para área de transferência",
"edit-url": "Editar URL manualmente",
@@ -541,9 +478,80 @@
"add-to-outlook-calendar": "Adicionar ao Calendário Outlook",
"add-to-yahoo-calendar": "Adicionar ao Calendário Yahoo!",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Abaixar a mão levantada",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Criar uma sala",
"rooms-allow-for": "As salas permitem bate-papo em grupo e as ferramentas para gerenciar vários convidados.",
"room-name": "Nome da sala",
"password-input-field": "Senha",
"guests-only-see-director": "Os convidados só podem ver o vídeo do diretor",
"scenes-can-see-director": "Diretor também será um participante",
"default-codec-select": "Codec de vídeo preferido: ",
"enter-the-rooms-control": "Entre no centro de controle da sala",
"show-tips": "Mostre-me algumas dicas...",
"added-notes": "\n<u>\n<i>Dicas importantes:</i><br><br>\n</u>\n<li>Desativar o compartilhamento de vídeo entre convidados melhorará o desempenho</li>\n<li>Convide para a sala apenas pessoas que você confia.</li>\n<li>A opção de \"Gravação\" é considerada experimental.</li>\n<li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>Parâmetros de URL avançados</u></a> estão disponíveis para personalizar as salas.</li>\n",
"looking-to-just-chat-and-not-direct": "Procurando apenas por bate-papo e não mensagem diretamente?",
"join-the-room-basic": "Entrar na sala como participante",
"back": "Voltar",
"add-your-camera": "Adicione sua câmera",
"ask-for-permissions": "Permitir acesso à câmera/microfone",
"start": "INICIAR",
"privacy-disabled": "Aviso de privacidade: o diretor poderá acessar remotamente sua câmera e microfone se você continuar.",
"for-the-best-possible-experience-make-sure": "Para a melhor experiência possível, certifique-se",
"your-device-is-powered": "Seu dispositivo está energizado",
"your-connection-is-hardwired-instead-of-wifi": "Sua conexão é cabeada em vez de Wi-Fi",
"you-are-using-headphones-earphones": "Você está usando headphones/fones de ouvido",
"up-to-4k": "4K",
"no-audio": "Sem áudio",
"add-a-password": " Adicione uma senha:",
"use-chrome-instead": "Considere usar um navegador baseado em Chromium.<br>\n O Safari é mais propenso a ter problemas de áudio",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Compartilhamento de tela remoto",
"select-screen-to-share": "SELECIONAR A TELA PARA COMPARTILHAR",
"audio-sources": "Fontes de áudio",
"application-audio-capture": "<a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">Captura de áudio específica de aplicativo</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Criar convite reutilizável",
"here-you-can-pre-generate": "Aqui você pode pré-gerar um link de fonte do navegador reutilizável e um link de convite relacionado.",
"generate-invite-link": "GERAR O LINK DE CONVITE",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Forçar codec de vídeo VP9",
"enable-stereo-and-pro": "Ativar áudio estéreo e profissional HD",
"video-resolution": "Resolução de vídeo: ",
"general-paramaters": "User options",
"allow-effects-invite": "Permitir que efeitos de vídeo sejam usados",
"hide-mic-selection": "Forçar microfone padrão",
"hide-screen-share": "Ocultar opção de compartilhamento de tela",
"obfuscate_url": "Ofuscar o URL de convite",
"add-a-password-to-stream": " Adicione uma senha:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Adicione o convidado a uma sala:",
"invite-group-chat-type": "Este convidado da sala pode:",
"can-see-and-hear": "Pode ver e ouvir o bate-papo em grupo",
"can-hear-only": "Pode somente ouvir o bate-papo em grupo",
"cant-see-or-hear": "Não é possível ouvir ou ver o bate-papo em grupo",
"share-local-video-file": "Arquivo de mídia de transmissão",
"select-the-video-files-to-share": "SELECIONE OS ARQUIVOS DE VÍDEO PARA COMPARTILHAR",
"share-website-iframe": "Compartilhar site",
"enter-the-website-URL-you-wish-to-share": "Insira a URL do site que você deseja compartilhar.",
"run-a-speed-test": "Faça um teste de velocidade",
"try-the-mixer-out": "Experimente o mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Navegue pelos guias",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Documentação completa",
"get-the-source-code": "Código-fonte",
"show-your-support": "Mostre seu apoio",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>O que é o VDO.Ninja</h2>\n<br>\n<li>100% <b>gratuito</b>; sem downloads; sem coleta de dados pessoais; sem login</li>\n<li>Traga vídeo ao vivo do seu smartphone, computador remoto ou amigos diretamente para o OBS ou outro software de estúdio.</li>\n<li>Usamos tecnologia de encaminhamento peer-to-peer de ponta que oferece privacidade e latência ultrabaixa</li>\n<br>\n<li>\n<i class=\"lab la-youtube\"></i>\n<a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\" alt=\"Vídeo do YouTube demonstrando o VDO.Ninja\">Demonstração de uso do VDO.Ninja</a>\n</li>\n\n<br>\n<br>\n<h3>\n 🛠 Para suporte, veja o <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> ou participe do <a href=\"https://discord.gg/T4xpQVv\">Discord <i class=\"lab la-discord\"></i></a>. Consulte também a <a href=\"https://docs.vdo.ninja/\">documentação</a> e meu e-mail pessoal é <i>steve@seguin.email</i>\n</h3> \n\n",
"guest-1": "Convidado 1",
"guest-2": "Convidado 2",
"guest-3": "Convidado 3",
"guest-4": "Convidado 4",
"waiting-for-camera": "Aguardando o carregamento da câmera",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Entrar na sala",
@@ -576,7 +584,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "INICIAR",
"note-share-audio": "\n\t<b>nota</b>: Não se esqueça de clicar em \"Partilhar áudio\" no Chrome.<br>(Firefox não suporta partilha de áudio.)",
"record": "Gravar",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -591,12 +598,6 @@
"join-by-room-name-here": "Entre pelo nome da sala",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Digite a mensagem de bate-papo para enviar",
"enter-a-room-name-here": "Digite um nome de sala",
"optional-room-password-here": "Senha opcional da sala",
"optional": "opcional",
"give-this-media-source-a-name-optional-": "Dê um nome a esta fonte de mídia (opcional)",
"add-an-optional-password": "Adicione uma senha opcional",
"enter-room-name-here": "Digite o nome da sala",
"enter-your-message-here": "Digite sua mensagem",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -604,7 +605,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Digite o nome da sala",
"enter-the-room-password-here": "Digite a senha da sala"
"enter-the-room-password-here": "Digite a senha da sala",
"enter-a-room-name-here": "Digite um nome de sala",
"optional-room-password-here": "Senha opcional da sala",
"optional": "opcional",
"give-this-media-source-a-name-optional-": "Dê um nome a esta fonte de mídia (opcional)",
"add-an-optional-password": "Adicione uma senha opcional",
"enter-room-name-here": "Digite o nome da sala"
},
"miscellaneous": {
"allowed-chars": "Caracteres permitidos",
@@ -705,6 +712,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Entrar na sala",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Irá lembrar-se da sala, pedindo da próxima vez que entrar se deseja carregar este sala de controlo novamente",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Guarde o seu stream para o disco",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Cancel the Director's Video/Audio",
"submit-any-error-logs": "Submeta registos de erros",
"show-help-contact-info": "Show help contact info",
"language-options": "Opções de língua",
"add-to-calendar": "Adicionar ao calendário",
"add-group-chat-to-obs": "Adicionar conversa de grupo ao OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "O realizador será visível em todas as cenas, como se ele próprio fosse um convidado.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Se selecionado, o realizador pode participar em cenas como um convidado. De outra forma, o realizador nunca aparecerá numa cena.",
"which-video-codec-would-you-want-used-by-default-": "Qual é o codec de vídeo que deseja usar por omissão?",
"you-ll-enter-as-the-room-s-director": "Vai entrar como o Realizador da sala",
"add-your-camera-to-obs": "Adicione a sua câmera ao OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "dica: Matenha pressionado CTRL (command) para seleção múltipla",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Aumente a performance e qualidade com esta dica",
"adjust-the-amount-of-effect-applied": "Ajustar a quantidade de efeito aplicada",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Partilha de ecrã remota para OBS",
"create-reusable-invite": "Criar convite reutilizável",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal para gaming 1080p60, se o teu computador e upload aguentarem",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Melhor compressão de vídeo e qualidade com o custo de mais carga no CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Desativar efeitos de áudio digitais e aumentar bitrate de áudio",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "O convidado poderá escolher efeitos digitais para aplicar.",
"the-guest-will-not-have-a-choice-over-audio-options": "O convidado não terá escolha sobre as opções de áudio",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "O convidado apenas poderá escolher a webcam como opção",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Obfuscar o URL para tornar mais difícil a um convidado modificar as definições.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Adicione uma password para tornar o stream inacessível a quem não a tenha.",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Adicione o convidado a uma sala; será criada automaticamente se necessário.",
"customize-the-room-settings-for-this-guest": "Personalize as definições da sala para este convidado",
"more-options": "Mais Opções",
"transfer-any-file": "Transferir qualquer ficheiro",
"enter-an-https-url": "Introduza um URL HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Vídeo de Youtube a explicar como fazer",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Convide alguém para publicar a câmera no grupo",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "Se desativado, o convidado não poderá ver ou ouvir ninguém na sala.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Tocar o vídeo com som mono",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Ajustar os vídeos às respetivas áreas, mesmo que signifique cortar um pouco da imagem.",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Alinhar os vídeos de forma a optimizar para vídeo vertical",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copiar este Stream ID para a área de transferência",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Clique aqui para editar a etiqueta deste stream. As alterações propagam para todos os visualizadores deste stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Tire o som a este utilizador em todo o lado",
"disable-video-preview": "Desativar Previsualização de Vídeo",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Adicionar/remover do grupo 6",
"remote-audio-settings": "Opções de áudio remoto",
"advanced-video-settings": "Opções de vídeo avançadas",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Isto irá pedir permissão para alterar ao convidado",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Uma visualização direta solo do vídeo/áudio sem mais nada. O seu áudio pode ser remotamente controlado a partir daqui",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Este convidado levantou a mão. Clique para limpar esta notificação.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Adicionar à Cena 2",
"activate-or-reload-this-video-device-": "Ativar ou recarregar este dispositivo de vídeo.",
"tip-hold-ctrl-command-to-select-multiple": "dica: Matenha pressionado CTRL (command) para seleção múltipla",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Aumente a performance e qualidade com esta dica",
"adjust-the-amount-of-effect-applied": "Ajustar a quantidade de efeito aplicada",
"the-solo-view-link-of-the-director-s-video-": "O link para visualizção solo do vídeo do realizador.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Esconder esta janela",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Adicionar conversa de grupo ao OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "O realizador será visível em todas as cenas, como se ele próprio fosse um convidado.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Se selecionado, o realizador pode participar em cenas como um convidado. De outra forma, o realizador nunca aparecerá numa cena.",
"which-video-codec-would-you-want-used-by-default-": "Qual é o codec de vídeo que deseja usar por omissão?",
"you-ll-enter-as-the-room-s-director": "Vai entrar como o Realizador da sala",
"add-your-camera-to-obs": "Adicione a sua câmera ao OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Partilha de ecrã remota para OBS",
"create-reusable-invite": "Criar convite reutilizável",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal para gaming 1080p60, se o teu computador e upload aguentarem",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Melhor compressão de vídeo e qualidade com o custo de mais carga no CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Desativar efeitos de áudio digitais e aumentar bitrate de áudio",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "O convidado poderá escolher efeitos digitais para aplicar.",
"the-guest-will-not-have-a-choice-over-audio-options": "O convidado não terá escolha sobre as opções de áudio",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "O convidado apenas poderá escolher a webcam como opção",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Obfuscar o URL para tornar mais difícil a um convidado modificar as definições.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Adicione uma password para tornar o stream inacessível a quem não a tenha.",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Adicione o convidado a uma sala; será criada automaticamente se necessário.",
"customize-the-room-settings-for-this-guest": "Personalize as definições da sala para este convidado",
"more-options": "Mais Opções",
"transfer-any-file": "Transferir qualquer ficheiro",
"enter-an-https-url": "Introduza um URL HTTPS",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Desligar som",
"mute-the-mic": "Desligar microfone",
"disable-the-camera": "Desligar câmera",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Mostrar ajuda",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copiar este Stream ID para a área de transferência",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Clique aqui para editar a etiqueta deste stream. As alterações propagam para todos os visualizadores deste stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Isto irá pedir permissão para alterar ao convidado",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Uma visualização direta solo do vídeo/áudio sem mais nada. O seu áudio pode ser remotamente controlado a partir daqui",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Este convidado levantou a mão. Clique para limpar esta notificação.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Introduza o nome de uma sala",
"create-a-secondary-stream": "Criar um stream secundário",
"share-a-website-as-an-embedded-iframe": "Partilhar um site como um IFRAME embebido",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Saltar para a documentação",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -301,94 +303,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Adicionar conversa de grupo ao OBS",
"rooms-allow-for": "As Salas permitem conversas de grupo simplificadas e a gestão avançada de múltiplos streams simultâneos.",
"room-name": "Nome da Sala",
"password-input-field": "Password",
"guests-only-see-director": "Os convidados só podem ver o vídeo do Realizador",
"scenes-can-see-director": "O realizador também será um participante",
"default-codec-select": "Codec de Vídeo preferido: ",
"enter-the-rooms-control": "Entrar no Centro de Controlo da Sala",
"show-tips": "Mostre-me algumas dicas..",
"added-notes": "\n<u><i>Notas adicionais:</i></u>\n<li>Qualquer pessoa pode entrar numa Sala se souber o nome, por isso mantenha-o único.</li>\n<li>Ter mais de quatro (4) pessoas numa Sala não é aconselhável devido a problemas de performance, mas depende do seu hardware.</li>\n<li>Dispositivos iOS são limitados a grupos de não mais de duas (2) pessoas. Esta é uma limitação de hardware.</li>\n<li>A opção \"Gravar\"é nova e considerada experimental.</li>\n<li>Deve \"Adicionar\" uma feed de vídeo à \"Cena de Grupo\" para que ela apareça lá.</li>\n<li>Existe um botão \"ecrã completo melhorado\" adicionado à vista de Convidado.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Entrar na sala como participante",
"back": "Voltar",
"add-your-camera": "Adicione a sua câmera ao OBS",
"ask-for-permissions": "Permita acesso à Câmera/Microfone",
"waiting-for-camera": "Esperando pela câmera",
"privacy-disabled": "Aviso de privacidade: Se continuar, o realizador será capaz de aceder remotamente à sua câmera e microfone.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Fonte de vídeo",
"up-to-4k": "4K",
"max-resolution": "Resolução Máxima",
"balanced": "Balanceado",
"smooth-cool": "Suave e leve",
"select-audio-source": "Selecionar fontes de áudio",
"no-audio": "Sem áudio",
"select-output-source": " Saída de áudio: \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Efeitos de Vídeo Digitais: ",
"no-effects-applied": "Nenhums efeitos aplicados",
"blurred-background": "Fundo desfocado",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Fundo verde",
"virtual-background": "Fundo virtual",
"face-mesh": "Grelha facial (carregamento lento)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Máscara Anonymous",
"dog-face": "Orelhas e nariz de cão",
"face-tracker": "Face tracker",
"add-a-password": " Adicionar uma Password:",
"use-chrome-instead": "Considere utilizar um browser baseado em Chromium.<br>\n O Safari é mais propenso a ter problemas de áudio",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Partilha de ecrã remota para OBS",
"select-screen-to-share": "SELECIONAR ECRÃ A PARTILHAR",
"audio-sources": "Fontes de áudio",
"application-audio-capture": "Para captura de áudio específico de uma aplicação, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">veja aqui</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Criar convite reutilizável",
"here-you-can-pre-generate": "Aqui pode gerar um link Browser Source reutilizável e um link de convidado relacionado.",
"generate-invite-link": "GERAR O LINK DE CONVITE",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Desbloquear Bitrate de Vídeo (20mbps)",
"force-vp9-video-codec": "Forçar Codec de vídeo VP9 (menos artefactos)",
"enable-stereo-and-pro": "Ativar áudio Stereo e Pro HD",
"video-resolution": "Resolução de Vídeo: ",
"general-paramaters": "User options",
"allow-effects-invite": "Permitir a utilização de efeitos de vídeo",
"hide-mic-selection": "Forçar microfone definido por omissão",
"hide-screen-share": "Esconder opção de partilhar ecrã",
"obfuscate_url": "Obfuscar o URL do convite",
"add-a-password-to-stream": " Adicionar uma password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Adicionar convidado a uma sala:",
"invite-group-chat-type": "Este convidado pode:",
"can-see-and-hear": "Pode ver e ouvir o chat de grupo",
"can-hear-only": "Pode apenas ouvir o chat de grupo",
"cant-see-or-hear": "Não pode ver ou ouvir o chat de grupo",
"share-local-video-file": "Fazer Stream de ficheiro de media",
"select-the-video-files-to-share": "SELECIONE OS FICHEIROS DE VÍDEO A PARTILHAR",
"share-website-iframe": "Partilhe um site",
"enter-the-website-URL-you-wish-to-share": "Introduza o URL do site que deseja partilhar.",
"run-a-speed-test": "Corra um teste de velocidade",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Descubra os Guias",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>O que é o VDO.Ninja</h2><br>\n<li>100% <b>grátis</b>; sem downloads; sem recolha de dados pessoais; sem login</li>\n<li>Leve vídeo do seu smartphone, portátil, computador, ou dos seus amigos diretamente para o seu stream de vídeo do OBS</li>\n<li>Usamos tecnologia de ponta de encaminhamento Peer-to-Peer que oferece privacidade e latência ultra-baixa</li>\n<br>\n<li>Vídeo de youtube <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Demoing it here</a> </li>\n<br><h3> 🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"hide-the-links": " LINKS (CONVITES &amp; CENAS)",
"click-here-for-help": "Clique aqui para uma visão geral e para ajuda",
"welcome-to-control-room": "Bem-vindo. Esta é a sala de controlo para o chat de grupo. Há diferentes coisas que pode fazer aqui:<br><br>\t<li>Pode hospedar um chat de grupo com amigos. Partilhe o link azul para os convidados se juntarem ao chat de forma automática.</li>\t<li>Uma sala de grupo pode hospedar entre 4 a 30 4 to 30 convidados, dependendo de inúmeros factores, incluindo CPU e largura de banda de todos os convidados na sala.</li>\t<li>Visualizações individuais de cada vídeo serão mostradas quando carregam. Estas podem ser usadas em Fontes do tipo Browser no OBS.</li>\t<li>Pode usar a cena de grupo automática, o link verde, para dispôr automaticamente os vídeos por si no OBS.</li>\t<li>Pode usar esta sala de controlo para gravar streams isolados de vídeo ou áudio, mas isto é ainda experimental.</li>\t<li>Vídeos na sala de controle são de baixa qualidade propositadamente; para poupar largura de banda/CPU</li>\t<li>Convidados na sala irão ver-se numa qualidade muito reduzida para conservar largura de banda/CPU.</li>\t<li>OBS tem acesso ao vídeo do convidado em alta qualidade; o bitrate de vídeo por omissão é 2500kbps.</li>\t<br>\tÀ medida que os convidados entram, os seus vídeos são mostrados abaixo. Pode levar os seus sinais para o OBS como cenas individuais ou pode adicioná-los à cena de grupo.\t<br>A Cena de grupo auto-mistura vídeos que lhe forem adicionados. Note que a auto-mistura requer que os convidados sejam manualmente adicionados; não são adicionados automaticamente.<br><br>Dispositivos móveis Apple, como iPhones e iPads, não suportam totalmente o Chat de Grupo. Este é um constrangimento de hardware.<br><br>\tPara opções avançadas e parâmetros, <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Guides-and-How-to's#urlparameters\">veja o Wiki.</a>",
@@ -440,15 +354,13 @@
"fade-videos-in": "Desvanecer entrada de vídeos",
"animate-mixing": "Animar mistura",
"add-margin": "Adicionar margem aos vídeos",
"unlock-video-bitrate": "Desbloquear Bitrate de Vídeo (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Forçar áudio mono",
"fill-video-space": "Cortar vídeo para caber",
"vertical-aspect-ratio": "Modo de vídeo vertical",
"learn-more-about-params": "Aprenda mais sobre os parâmetros de URL em ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Mute",
"send-direct-chat": "Enviar mensagem",
"close": "fechar",
@@ -479,10 +391,36 @@
"force-keyframe": "Vomitado arco-íris",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Definições de Áudio",
"advanced-camera-settings": "<i class=\"las la-cog\"></i> Avançadas",
"user-raised-hand": "Baixar mão",
"remove-from-queue": "Activate Guest",
"record-director-local": " Gravar",
"solo-video-director": "Highlight",
"video-source": "Fonte de vídeo",
"max-resolution": "Resolução Máxima",
"balanced": "Balanceado",
"smooth-cool": "Suave e leve",
"select-audio-source": "Selecionar fontes de áudio",
"select-output-source": " Saída de áudio: \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Efeitos de Vídeo Digitais: ",
"no-effects-applied": "Nenhums efeitos aplicados",
"blurred-background": "Fundo desfocado",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Fundo verde",
"virtual-background": "Fundo virtual",
"face-mesh": "Grelha facial (carregamento lento)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Máscara Anonymous",
"dog-face": "Orelhas e nariz de cão",
"face-tracker": "Face tracker",
"close-settings": "Fechar Definições",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Abrir num novo separador",
"copy-to-clipboard": "Copiar para área de transferência",
"edit-url": "Editar URL",
@@ -539,9 +477,80 @@
"add-to-outlook-calendar": "Adicionar ao Calendário Outlook",
"add-to-yahoo-calendar": "Adicionar ao Calendário Yahoo",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Baixar mão",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Adicionar conversa de grupo ao OBS",
"rooms-allow-for": "As Salas permitem conversas de grupo simplificadas e a gestão avançada de múltiplos streams simultâneos.",
"room-name": "Nome da Sala",
"password-input-field": "Password",
"guests-only-see-director": "Os convidados só podem ver o vídeo do Realizador",
"scenes-can-see-director": "O realizador também será um participante",
"default-codec-select": "Codec de Vídeo preferido: ",
"enter-the-rooms-control": "Entrar no Centro de Controlo da Sala",
"show-tips": "Mostre-me algumas dicas..",
"added-notes": "\n<u><i>Notas adicionais:</i></u>\n<li>Qualquer pessoa pode entrar numa Sala se souber o nome, por isso mantenha-o único.</li>\n<li>Ter mais de quatro (4) pessoas numa Sala não é aconselhável devido a problemas de performance, mas depende do seu hardware.</li>\n<li>Dispositivos iOS são limitados a grupos de não mais de duas (2) pessoas. Esta é uma limitação de hardware.</li>\n<li>A opção \"Gravar\"é nova e considerada experimental.</li>\n<li>Deve \"Adicionar\" uma feed de vídeo à \"Cena de Grupo\" para que ela apareça lá.</li>\n<li>Existe um botão \"ecrã completo melhorado\" adicionado à vista de Convidado.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Entrar na sala como participante",
"back": "Voltar",
"add-your-camera": "Adicione a sua câmera ao OBS",
"ask-for-permissions": "Permita acesso à Câmera/Microfone",
"start": "INICIAR",
"privacy-disabled": "Aviso de privacidade: Se continuar, o realizador será capaz de aceder remotamente à sua câmera e microfone.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Sem áudio",
"add-a-password": " Adicionar uma Password:",
"use-chrome-instead": "Considere utilizar um browser baseado em Chromium.<br>\n O Safari é mais propenso a ter problemas de áudio",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Partilha de ecrã remota para OBS",
"select-screen-to-share": "SELECIONAR ECRÃ A PARTILHAR",
"audio-sources": "Fontes de áudio",
"application-audio-capture": "Para captura de áudio específico de uma aplicação, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">veja aqui</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Criar convite reutilizável",
"here-you-can-pre-generate": "Aqui pode gerar um link Browser Source reutilizável e um link de convidado relacionado.",
"generate-invite-link": "GERAR O LINK DE CONVITE",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Forçar Codec de vídeo VP9 (menos artefactos)",
"enable-stereo-and-pro": "Ativar áudio Stereo e Pro HD",
"video-resolution": "Resolução de Vídeo: ",
"general-paramaters": "User options",
"allow-effects-invite": "Permitir a utilização de efeitos de vídeo",
"hide-mic-selection": "Forçar microfone definido por omissão",
"hide-screen-share": "Esconder opção de partilhar ecrã",
"obfuscate_url": "Obfuscar o URL do convite",
"add-a-password-to-stream": " Adicionar uma password:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Adicionar convidado a uma sala:",
"invite-group-chat-type": "Este convidado pode:",
"can-see-and-hear": "Pode ver e ouvir o chat de grupo",
"can-hear-only": "Pode apenas ouvir o chat de grupo",
"cant-see-or-hear": "Não pode ver ou ouvir o chat de grupo",
"share-local-video-file": "Fazer Stream de ficheiro de media",
"select-the-video-files-to-share": "SELECIONE OS FICHEIROS DE VÍDEO A PARTILHAR",
"share-website-iframe": "Partilhe um site",
"enter-the-website-URL-you-wish-to-share": "Introduza o URL do site que deseja partilhar.",
"run-a-speed-test": "Corra um teste de velocidade",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Descubra os Guias",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>O que é o VDO.Ninja</h2><br>\n<li>100% <b>grátis</b>; sem downloads; sem recolha de dados pessoais; sem login</li>\n<li>Leve vídeo do seu smartphone, portátil, computador, ou dos seus amigos diretamente para o seu stream de vídeo do OBS</li>\n<li>Usamos tecnologia de ponta de encaminhamento Peer-to-Peer que oferece privacidade e latência ultra-baixa</li>\n<br>\n<li>Vídeo de youtube <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Demoing it here</a> </li>\n<br><h3> 🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Esperando pela câmera",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Entrar na sala",
@@ -574,7 +583,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "INICIAR",
"note-share-audio": "\n\t<b>nota</b>: Não se esqueça de clicar em \"Partilhar áudio\" no Chrome.<br>(Firefox não suporta partilha de áudio.)",
"record": "Gravar",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -589,12 +597,6 @@
"join-by-room-name-here": "Introduza aqui numa sala pelo seu nome",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Introduza mensagem a enviar aqui",
"enter-a-room-name-here": "Introduza o nome da sala",
"optional-room-password-here": "Introduza password da sala (opcional)",
"optional": "opcional",
"give-this-media-source-a-name-optional-": "Dê um nome a esta fonte de mídia (opcional)",
"add-an-optional-password": "Introduza uma password (opcional)",
"enter-room-name-here": "Introduza nome da sala aqui",
"enter-your-message-here": "Introduza aqui a sua mensagem",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -602,7 +604,13 @@
"-authentication-bearer-token-optional-": "🗝️ Authentication Bearer Token (optional)",
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Introduza aqui o nome da sala",
"enter-the-room-password-here": "Introduza aqui a password da sala"
"enter-the-room-password-here": "Introduza aqui a password da sala",
"enter-a-room-name-here": "Introduza o nome da sala",
"optional-room-password-here": "Introduza password da sala (opcional)",
"optional": "opcional",
"give-this-media-source-a-name-optional-": "Dê um nome a esta fonte de mídia (opcional)",
"add-an-optional-password": "Introduza uma password (opcional)",
"enter-room-name-here": "Introduza nome da sala aqui"
},
"miscellaneous": {
"new-display-name": "Introduza um novo Nome",
@@ -703,6 +711,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Подключиться к комнате",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Включить запись на диск",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Прервать видео/аудио ведущего",
"submit-any-error-logs": "Посылать логи с любыми ошибками",
"show-help-contact-info": "Show help contact info",
"language-options": "Языковые настройки",
"add-to-calendar": "Добавить в календарь",
"add-group-chat-to-obs": "Добавить групповой чат в OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "При общении в больших группах данная опция может значительно снизить нагрузку на компьютеры гостей",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "Ведущий будет виден в сценах как участник.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Активируйте параметр если сигнал от ведущего необходимо добавлять в сцену",
"which-video-codec-would-you-want-used-by-default-": "Какой видео-кодек использовать по умолчанию?",
"you-ll-enter-as-the-room-s-director": "Вы войдете как ведущий комнаты",
"add-your-camera-to-obs": "Добавление камеры в OBS (изображение с камеры телефона, к примеру)",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "Удерживайте CTRL (CMD), чтобы выбрать несколько пунктов",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Повышает производительность и качество",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Добавление рабочего стола/окна/вкладки браузера в OBS",
"create-reusable-invite": "Создание многоразгового приглашения",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Идеально для гейминга (1080p60), если компьютер и канал справляются.",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Лучше сжатие и качество за счет повышенной нагрузки на CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Отключается обработка звука и повышается аудио битрейт",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Нет возможности менять параметры аудио",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Можно выбрать только вебкамеру",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Зашифровать ссылку, чтобы гостям было сложнее изменить настройки",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Добавьте пароль, чтобы ограничить доступ пользователей",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Добавить гостя в групповую чат-комнату. Она будет автоматически создана, при отсутствии.",
"customize-the-room-settings-for-this-guest": "Изменить настройки комнаты для данного гостя",
"more-options": "Больше настроек",
"transfer-any-file": "Послать файл",
"enter-an-https-url": "Введите ссылку с https-адресом",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Инструкция на ютубе показывает как это сделать",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Пригласть гостя или видео-источник для показа в групповой комнате",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "Если отключено, приглашенный гость не сможет никого видеть или слышать в комнате",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Воспроизводить видео с моно звуком",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Вписывать видео в отведенное пространство, даже если придется слегка кадрировать",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Вписывать видео в размеры для вертикальных видео",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Скопировать идентификатор стрима в буфер обмена",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Нажмите сюда для редактирования подписи данного стрима, изменения коснуться всех зрителей",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Отключить микрофон пользователю",
"disable-video-preview": "Отключить превью видео",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Настройки звука на стороне гостя",
"advanced-video-settings": "Расширенные видеонастройки",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Будет послан запрос на внесение изменений на стороне пользователя",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Просмотр только текущего сигнала. Возможно удаленное управление звуком",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Данный гость поднял руку. Кликните, чтобы скрыть текущие уведомление",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Добавить в 2 сцену",
"activate-or-reload-this-video-device-": "Активировать или обновить отображение видео устройства",
"tip-hold-ctrl-command-to-select-multiple": "Удерживайте CTRL (CMD), чтобы выбрать несколько пунктов",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Повышает производительность и качество",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Скрыть данное окно",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Добавить групповой чат в OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "При общении в больших группах данная опция может значительно снизить нагрузку на компьютеры гостей",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "Ведущий будет виден в сценах как участник.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "Активируйте параметр если сигнал от ведущего необходимо добавлять в сцену",
"which-video-codec-would-you-want-used-by-default-": "Какой видео-кодек использовать по умолчанию?",
"you-ll-enter-as-the-room-s-director": "Вы войдете как ведущий комнаты",
"add-your-camera-to-obs": "Добавление камеры в OBS (изображение с камеры телефона, к примеру)",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Добавление рабочего стола/окна/вкладки браузера в OBS",
"create-reusable-invite": "Создание многоразгового приглашения",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Идеально для гейминга (1080p60), если компьютер и канал справляются.",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Лучше сжатие и качество за счет повышенной нагрузки на CPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Отключается обработка звука и повышается аудио битрейт",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Нет возможности менять параметры аудио",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Можно выбрать только вебкамеру",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Зашифровать ссылку, чтобы гостям было сложнее изменить настройки",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Добавьте пароль, чтобы ограничить доступ пользователей",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Добавить гостя в групповую чат-комнату. Она будет автоматически создана, при отсутствии.",
"customize-the-room-settings-for-this-guest": "Изменить настройки комнаты для данного гостя",
"more-options": "Больше настроек",
"transfer-any-file": "Послать файл",
"enter-an-https-url": "Введите ссылку с https-адресом",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Звук вкл/выкл",
"mute-the-mic": "Микрофон вкл/выкл",
"disable-the-camera": "Камера вкл/выкл",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Помощь",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Скопировать идентификатор стрима в буфер обмена",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Нажмите сюда для редактирования подписи данного стрима, изменения коснуться всех зрителей",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "Будет послан запрос на внесение изменений на стороне пользователя",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "Просмотр только текущего сигнала. Возможно удаленное управление звуком",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "Данный гость поднял руку. Кликните, чтобы скрыть текущие уведомление",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Подключиться по названию комнаты",
"create-a-secondary-stream": "Создать второй стрим",
"share-a-website-as-an-embedded-iframe": "Поделиться сайтом как внедренным объектом",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -287,7 +289,6 @@
"set-to-default-audio-channel": "Установить аудио-каналом по умолчанию",
"set-to-audio-channel-7": "Установить 7 аудио-каналом",
"set-to-audio-channel-8": "Установить 8 аудио-каналом",
"100-charging": "100% charging",
"this-will-reconnect-the-guest-s-active-video-source-": "This will reconnect the guest's active video source.",
"-": "Скрыть данное окно",
"-obs": "Рабочий стол (окно/вкладка браузера) в OBS",
@@ -324,94 +325,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Создать комнату",
"rooms-allow-for": "Комнаты поддерживают групповое общение и могут выдерживать большие компании",
"room-name": "Название комнаты",
"password-input-field": "Пароль",
"guests-only-see-director": "Гости видят только видеопоток от ведущего",
"scenes-can-see-director": "Ведущий будет и участником общения",
"default-codec-select": "Предпочитаемый видео кодек ",
"enter-the-rooms-control": "Войти в центр управления",
"show-tips": "Советы",
"added-notes": "\n<u>\n\t<i>Важно:</i><br><br>\n</u>\n<li>Отключение передачи видео между гостями существенно повышает производительность.</li>\n<li>Приглашайте в комнату тех, кому доверяете.</li>\n<li> Запись экспериментальная функция.</li>\n<li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>Продвинутые параметры</u></a> для тонкой подстройки комнаты.</li>\n\t",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Войти в комнату как участник",
"back": "Назад",
"add-your-camera": "Показать изображение камеры",
"ask-for-permissions": "Разрешить доступ к микрофону/камере",
"waiting-for-camera": "Загружаем камеру",
"privacy-disabled": "Ведущий сможет удаленно управлять вашим микрофоном и камерой.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Источник видео ",
"up-to-4k": "4K",
"max-resolution": "Лучшее качество",
"balanced": "Сбалансированно",
"smooth-cool": "Лучшая скорость передачи",
"select-audio-source": " Источник звука ",
"no-audio": "без звука",
"select-output-source": " Выход звука: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Цифровые видеоэффекты: ",
"no-effects-applied": "Нет примененных эффектов",
"blurred-background": "Размытый фон",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Цифровой зеленый фон",
"virtual-background": "Виртуальный фон",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Маска анонимуса",
"dog-face": "Собачьи уши и нос",
"face-tracker": "Face tracker",
"add-a-password": " Добавить пароль:",
"use-chrome-instead": "По возможности используйте браузеры на основе Chromium (Chrome, Opera, Yandex Браузер и пр.)<br>\n В Safari чаще проявляются проблемы со звуком.",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Показать рабочий стол",
"select-screen-to-share": "Выбрать экран рабочего стола/окно/вкладку браузера",
"audio-sources": "Источники звука",
"application-audio-capture": "Для захвата звука из конкретного приложения, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">читайте тут</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Создать многоразовое приглашение",
"here-you-can-pre-generate": "Создание многоразовой ссылки для приглашения гостей и стриминга этого общения.",
"generate-invite-link": "Генерация ссылок",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Снять ограничение на битрейт (20 мегабит/с)",
"force-vp9-video-codec": "Видеокодек VP9",
"enable-stereo-and-pro": "Стерео и звук повышенного качества",
"video-resolution": "Разрешение видео: ",
"general-paramaters": "User options",
"allow-effects-invite": "Разрешить использование видео-эффектов",
"hide-mic-selection": "Использовать микрофон по умолчанию",
"hide-screen-share": "Скрыть возможность поделиться экраном",
"obfuscate_url": "Зашифровать ссылку-приглашение",
"add-a-password-to-stream": " Установить пароль на стрим:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Добавить гостя в комнату:",
"invite-group-chat-type": "В этой комнате гость",
"can-see-and-hear": "Может видеть и слышать групповое общение",
"can-hear-only": "Може слышать групповое общение",
"cant-see-or-hear": "не может слышать или видеть групповое общение",
"share-local-video-file": "Показать медиафайл",
"select-the-video-files-to-share": "Поделиться видеофайлом",
"share-website-iframe": "Показать сайт",
"enter-the-website-URL-you-wish-to-share": "Поделиться ссылкой на сайт.",
"run-a-speed-test": "Запустить тест скорости",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Ознакомиться с руководством",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<li>Пожалуйста, сделайте все возможное, чтобы немедленно остановить эту кровавую войну! Иначе завтра может не быть!</li>\n<br><h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"hide-the-links": "Ссылки (Подключение гостей и сцены для программ трансляции)",
"click-here-for-help": "Что это?",
"welcome-to-control-room": "\n<b>Приветствуем. Это центр управления.</b><br><br>\nОтсюда вы можете управлять групповым чатом с друзьями. Поделитесь ссылкой из фиолетовой области, чтобы пригласить гостей, которые будут автоматически подключены к чату.\n<br><br>\nКомната выдерживает 6-20 человек, что зависит от суммы факторов, включая производительность процессора и ширину доступных каналов связи всех гостей в комнате\n\t",
@@ -463,15 +376,13 @@
"fade-videos-in": "Выводить видео из затемнения",
"animate-mixing": "Анимированный переход",
"add-margin": "Добавить рамки для видео",
"unlock-video-bitrate": "Снять ограничение на битрейт (20 мегабит/с)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Моно звук",
"fill-video-space": "Обрезать видео для вписывания в границы",
"vertical-aspect-ratio": "Портретный режим",
"learn-more-about-params": "Узнать больше о возможных параметрах на ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Mute",
"send-direct-chat": "сообщение",
"close": "Закрыть",
@@ -502,10 +413,36 @@
"force-keyframe": "Исправить радужный эффект",
"advanced-audio-settings": "Звук",
"advanced-camera-settings": "Видео",
"user-raised-hand": "Опустить поднятную руку",
"remove-from-queue": "Activate Guest",
"record-director-local": " Запись",
"solo-video-director": "Выделять",
"video-source": "Источник видео ",
"max-resolution": "Лучшее качество",
"balanced": "Сбалансированно",
"smooth-cool": "Лучшая скорость передачи",
"select-audio-source": " Источник звука ",
"select-output-source": " Выход звука: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Цифровые видеоэффекты: ",
"no-effects-applied": "Нет примененных эффектов",
"blurred-background": "Размытый фон",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Цифровой зеленый фон",
"virtual-background": "Виртуальный фон",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Маска анонимуса",
"dog-face": "Собачьи уши и нос",
"face-tracker": "Face tracker",
"close-settings": "Закрыть настройки",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Открыть в новой вкладке",
"copy-to-clipboard": "Скопировать в буфер обмена",
"edit-url": "Отредактировать ссылку вручную",
@@ -562,9 +499,80 @@
"add-to-outlook-calendar": "Добавить в календарь Outlook",
"add-to-yahoo-calendar": "Добавить в календарь Yahoo",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Опустить поднятную руку",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Создать комнату",
"rooms-allow-for": "Комнаты поддерживают групповое общение и могут выдерживать большие компании",
"room-name": "Название комнаты",
"password-input-field": "Пароль",
"guests-only-see-director": "Гости видят только видеопоток от ведущего",
"scenes-can-see-director": "Ведущий будет и участником общения",
"default-codec-select": "Предпочитаемый видео кодек ",
"enter-the-rooms-control": "Войти в центр управления",
"show-tips": "Советы",
"added-notes": "\n<u>\n\t<i>Важно:</i><br><br>\n</u>\n<li>Отключение передачи видео между гостями существенно повышает производительность.</li>\n<li>Приглашайте в комнату тех, кому доверяете.</li>\n<li> Запись экспериментальная функция.</li>\n<li><a href=\"https://params.vdo.ninja\" style=\"color:black;\"><u>Продвинутые параметры</u></a> для тонкой подстройки комнаты.</li>\n\t",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Войти в комнату как участник",
"back": "Назад",
"add-your-camera": "Показать изображение камеры",
"ask-for-permissions": "Разрешить доступ к микрофону/камере",
"start": "INICIAR",
"privacy-disabled": "Ведущий сможет удаленно управлять вашим микрофоном и камерой.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "без звука",
"add-a-password": " Добавить пароль:",
"use-chrome-instead": "По возможности используйте браузеры на основе Chromium (Chrome, Opera, Yandex Браузер и пр.)<br>\n В Safari чаще проявляются проблемы со звуком.",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Показать рабочий стол",
"select-screen-to-share": "Выбрать экран рабочего стола/окно/вкладку браузера",
"audio-sources": "Источники звука",
"application-audio-capture": "Для захвата звука из конкретного приложения, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">читайте тут</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Создать многоразовое приглашение",
"here-you-can-pre-generate": "Создание многоразовой ссылки для приглашения гостей и стриминга этого общения.",
"generate-invite-link": "Генерация ссылок",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "Видеокодек VP9",
"enable-stereo-and-pro": "Стерео и звук повышенного качества",
"video-resolution": "Разрешение видео: ",
"general-paramaters": "User options",
"allow-effects-invite": "Разрешить использование видео-эффектов",
"hide-mic-selection": "Использовать микрофон по умолчанию",
"hide-screen-share": "Скрыть возможность поделиться экраном",
"obfuscate_url": "Зашифровать ссылку-приглашение",
"add-a-password-to-stream": " Установить пароль на стрим:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Добавить гостя в комнату:",
"invite-group-chat-type": "В этой комнате гость",
"can-see-and-hear": "Может видеть и слышать групповое общение",
"can-hear-only": "Може слышать групповое общение",
"cant-see-or-hear": "не может слышать или видеть групповое общение",
"share-local-video-file": "Показать медиафайл",
"select-the-video-files-to-share": "Поделиться видеофайлом",
"share-website-iframe": "Показать сайт",
"enter-the-website-URL-you-wish-to-share": "Поделиться ссылкой на сайт.",
"run-a-speed-test": "Запустить тест скорости",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Ознакомиться с руководством",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "<li>Пожалуйста, сделайте все возможное, чтобы немедленно остановить эту кровавую войну! Иначе завтра может не быть!</li>\n<br><h3>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i></h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Загружаем камеру",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Подключиться",
@@ -597,7 +605,6 @@
"guest-toggle": "гость переключатели",
"settings": "Настройки",
"more": "Более",
"start": "INICIAR",
"note-share-audio": "\n\t<b>nota</b>: Não se esqueça de clicar em \"Partilhar áudio\" no Chrome.<br>(Firefox não suporta partilha de áudio.)",
"record": "Gravar",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -612,12 +619,6 @@
"join-by-room-name-here": "Подключиться по названию комнаты",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Введите сообщение для чата",
"enter-a-room-name-here": "Введите название комнаты",
"optional-room-password-here": "Пароль для комнаты (по желанию)",
"optional": "По желанию",
"give-this-media-source-a-name-optional-": "Подписать данный источник (по желанию)",
"add-an-optional-password": "Добавить пароль для комнаты",
"enter-room-name-here": "Введите название комнаты",
"enter-your-message-here": "Введите сообщение",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -626,6 +627,12 @@
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Введите название комнаты",
"enter-the-room-password-here": "Введите пароль комнаты",
"enter-a-room-name-here": "Введите название комнаты",
"optional-room-password-here": "Пароль для комнаты (по желанию)",
"optional": "По желанию",
"give-this-media-source-a-name-optional-": "Подписать данный источник (по желанию)",
"add-an-optional-password": "Добавить пароль для комнаты",
"enter-room-name-here": "Введите название комнаты",
"-": "Введите пароль комнаты"
},
"miscellaneous": {
@@ -727,6 +734,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Join room",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Record your stream to disk",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Cancel the Director's Video/Audio",
"submit-any-error-logs": "Submit any error logs",
"show-help-contact-info": "Show help contact info",
"language-options": "Language Options",
"add-to-calendar": "Add to Calendar",
"add-group-chat-to-obs": "Add Group Chat to OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera to OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "tip: Hold CTRL (command) to select Multiple",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare into OBS",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal for 1080p60 gaming, if your computer and upload are up for it",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Better video compression and quality at the cost of increased CPU encoding load",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Disable digital audio-effects and increase audio bitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "The guest will not have a choice over audio-options",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "The guest will only be able to select their webcam as an option",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Add a password to make the stream inaccessible to those without the password",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Add the guest to a group-chat room; it will be created automatically if needed.",
"customize-the-room-settings-for-this-guest": "Customize the room settings for this guest",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Enter an HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube Video demoing how to do this",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Invite a guest or camera source to publish into the group room",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "If disabled, the invited guest will not be able to see or hear anyone in the room.",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Mute this guest everywhere",
"disable-video-preview": "Disable Video Preview",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Remote Audio Settings",
"advanced-video-settings": "Advanced Video Settings",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Add to Scene 2",
"activate-or-reload-this-video-device-": "Activate or Reload this video device.",
"tip-hold-ctrl-command-to-select-multiple": "tip: Hold CTRL (command) to select Multiple",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Add Group Chat to OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "For large group rooms, this option can reduce the load on remote guests substantially",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "The director will be visible in scenes, as if a performer themselves.",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Which video codec would you want used by default?",
"you-ll-enter-as-the-room-s-director": "You'll enter as the room's director",
"add-your-camera-to-obs": "Add your Camera to OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Remote Screenshare into OBS",
"create-reusable-invite": "Create Reusable Invite",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ideal for 1080p60 gaming, if your computer and upload are up for it",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Better video compression and quality at the cost of increased CPU encoding load",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Disable digital audio-effects and increase audio bitrate",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "The guest will not have a choice over audio-options",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "The guest will only be able to select their webcam as an option",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Encode the URL so that it's harder for a guest to modify the settings.",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Add a password to make the stream inaccessible to those without the password",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Add the guest to a group-chat room; it will be created automatically if needed.",
"customize-the-room-settings-for-this-guest": "Customize the room settings for this guest",
"more-options": "More Options",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Enter an HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Mute the Speaker",
"mute-the-mic": "Mute the Mic",
"disable-the-camera": "Disable the Camera",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Show Help Info",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Enter a room name to quick join",
"create-a-secondary-stream": "Create a Secondary Stream",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -287,7 +289,6 @@
"set-to-default-audio-channel": "Set to Default Audio Channel",
"set-to-audio-channel-7": "Set to Audio Channel 7",
"set-to-audio-channel-8": "Set to Audio Channel 8",
"100-charging": "100% charging",
"this-will-reconnect-the-guest-s-active-video-source-": "This will reconnect the guest's active video source.",
"-": "Скрыть данное окно",
"-obs": "Рабочий стол (окно/вкладка браузера) в OBS",
@@ -324,94 +325,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "OBS'ye Grup Konuşması Ekle",
"rooms-allow-for": "Odalar basit konuşma ve sohbet'in yanında çoklu video akışların gelişmiş yönetimini de sağlar.",
"room-name": "Oda İsmi",
"password-input-field": "Şifre",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Oda'nın Kontrol Merkezine Gir",
"show-tips": "Bana ipuları göster",
"added-notes": "\n<u><i>Ek Notlar:</i></u>\n<li>Odanın ismini bilen herkes giriş yapabilir, bu yüzden olabildiğince özgün bir isim seçin.</li>\n<li>Performans sebeplerinden ötürü bir odada dört (4) kişiden fazla olmasını tavsiye etmiyoruz, ancak bu donanımınızla ölçeklenen bir durumdur.</li>\n<li>iOS cihazları sadece iki (2) kişilik gruplarla sınırldır, bu bir donanım sınırlamasıdır.</li>\n<li>\"Kayır\" seçeneği yeni ve deneyseldir.</li>\n<li>Görünebilmesi için \"Grup Sahnesine\" bir kamera akışı \"eklemeniz\" gerekiyor.</li>\n<li>Misafirlerin ekranlarına yeni bir \"geliştirilmiş tam ekran\" düğmesi eklendi.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Geri",
"add-your-camera": "Kamera'nı OBS'ye Ekle",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"waiting-for-camera": "Kameranın yüklenmesi bekleniyor",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": "Video kaynağı",
"up-to-4k": "4K",
"max-resolution": "Maksimum Çözünürlük",
"balanced": "Dengeli",
"smooth-cool": "Pürüzsüz ve Soğukkanlı",
"select-audio-source": "Ses Kaynaklarını Seçin",
"no-audio": "Sessiz",
"select-output-source": " Ses Çıkışı: \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "OBS'ye uzaktan ekran paylaşımı",
"select-screen-to-share": "PAYLAŞILACAK EKRANI SEÇİN",
"audio-sources": "Ses Kaynakları",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Yeniden Kullanılabilir Davet Oluştur",
"here-you-can-pre-generate": "Burada tekrar kullanılabilir bir Tarayıcı Kaynak bağlantısı ve onunla ilişkili misafir davet bağlantısı oluşturabilirsin.",
"generate-invite-link": "DAVET BAĞLANTISINI OLUŞTUR",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Video Bitrate Sınırını Kaldır (20mbps)",
"force-vp9-video-codec": "VP9 Codec'e Zorla (görüntüde daha az bozulma)",
"enable-stereo-and-pro": "Stereo ve Pro HD Sesi Etkinleştir",
"video-resolution": "Video Çözünürlüğü: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Ekran Paylaşma'yı Gizle",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Şifre Ekle:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Odaya Misafiri Ekle:",
"invite-group-chat-type": "Bu oda misafiri:",
"can-see-and-hear": "Grup konuşmasını görebilir ve duyabilir",
"can-hear-only": "Grup konunşmasını sadece duyabilir",
"cant-see-or-hear": "Gup konuşmasını duyamaz ve göremez",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>VDO.Ninja Nedir?</h2><br>\n<li>100% <b>bedava</b>; indirme yok; kişisel veri toplama yok; giriş yok</li>\n<li>Bilgisayarınızdan, dizüstünden, telefonunuzdan - hatta arkadaşlarınızdan görüntüleri OBS akışınızın içine alın</li>\n<li>Biz yeni nesil Peer-to-Peer (Kişiden-Kişiye) yönlendirme teknolojisi kullanıyoruz, bu sayede çok düşük gecikme ve gizlilik sağlayabiliyoruz</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Burada demoyu görebilirsiniz (ingilizce)</a> </li>\n<br><h3>\n🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3>",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "Hoş geldiniz. Bu grup konuşması için kontrol odasıdır. Bu odayı farklı amaçlar için kullanabilirsiniz:<br><br>\t<li>Arkadaşlarınız ile grup konunşması yapmak için bir oda kullanabilirsiniz. Otomatik olarak gruba dahil etmek için misafirleriniz ile mavi bağlantıyı paylaşın.</li>\t<li>Bir grup odası 4 - 30 sayıda misafir ağırlayabilir. Ancak bu bir çok etkene göre değişebilir, yeterli CPU ve internet bant genişliği gibi.</li>\t<li>Her videonun tekil görüntüsü bağlantıları misafirler bağlandıkça videolarının altında yer alacak. Bunları OBS tarayıcı kaynağı olarak kullanabilirsiniz.</li>\t<li>Otomatik-karıştırma grup sahnesi (yeşil bağlantı) bir çok videoyu OBS'de otomatik ayarlamak için kullanabilirsiniz.</li>\t<li>Bu odayı kullanarak her bir video için ayrı ayrı video ve ses kaynaklarını kaydedebilirsiniz, ancak bu özellik halen deneysel aşamadadır.</li>\t<li>Yönetmen odasında yer alan videolar kasten düşük kalitede tutulmuştur; CPU ve internetbant genişliğinden tasarruf için</li>\t<li>Odada yer alan misafirler, CPU ve internetten tasarruf etmek amacıyla bir birlerinin videolarını düşük kalitede görecek.</li>\t<li>OBS misafirlerin videolarını çok yüksek kalitede alacak, varsayılan kalite 2500kbps'dir.</li>\t<br>\tMisafirler eklendikçe videoları aşağıda belirecek. OBS'ye videolarını tekil sahneler olarak ekleyebilir, ya da grup sahnelerine ekleyebilirsiniz.\t<br>Grup sahnesi, eklenmiş videoları otomatik olarak karıştırır. Otomatik karıştırmanın çalışması için misafirlerin el ile bu sahneye eklenmesi gerektiğini unutmayın; otomatik olarak sahnelere eklenmeyeceklerdir.<br><br>iPhone iPad gibi Apple mobil cihazlar, tam olarak video grup görüşmeyi desteklemiyor. Bu bir donanım sınırlamasıdır.<br><br>\tGekişmiş özellik ve parametreler için <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Guides-and-How-to's#urlparameters\">Wiki'ye göz atın.</a>",
@@ -463,15 +376,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Video Bitrate Sınırını Kaldır (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Sesi Kıs",
"send-direct-chat": "Message",
"close": "close",
@@ -502,10 +413,36 @@
"force-keyframe": "Rainbow Puke",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Audio Settings",
"advanced-camera-settings": "<i class=\"las la-cog\"></i> Advanced",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Highlight",
"video-source": "Video kaynağı",
"max-resolution": "Maksimum Çözünürlük",
"balanced": "Dengeli",
"smooth-cool": "Pürüzsüz ve Soğukkanlı",
"select-audio-source": "Ses Kaynaklarını Seçin",
"select-output-source": " Ses Çıkışı: \n\t",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Yeni Sekmede Aç",
"copy-to-clipboard": "Panoya Kopyala",
"edit-url": "Edit URL manually",
@@ -562,9 +499,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "OBS'ye Grup Konuşması Ekle",
"rooms-allow-for": "Odalar basit konuşma ve sohbet'in yanında çoklu video akışların gelişmiş yönetimini de sağlar.",
"room-name": "Oda İsmi",
"password-input-field": "Şifre",
"guests-only-see-director": "Guests can only see the Director's Video",
"scenes-can-see-director": "Director will also be a performer",
"default-codec-select": "Preferred Video Codec: ",
"enter-the-rooms-control": "Oda'nın Kontrol Merkezine Gir",
"show-tips": "Bana ipuları göster",
"added-notes": "\n<u><i>Ek Notlar:</i></u>\n<li>Odanın ismini bilen herkes giriş yapabilir, bu yüzden olabildiğince özgün bir isim seçin.</li>\n<li>Performans sebeplerinden ötürü bir odada dört (4) kişiden fazla olmasını tavsiye etmiyoruz, ancak bu donanımınızla ölçeklenen bir durumdur.</li>\n<li>iOS cihazları sadece iki (2) kişilik gruplarla sınırldır, bu bir donanım sınırlamasıdır.</li>\n<li>\"Kayır\" seçeneği yeni ve deneyseldir.</li>\n<li>Görünebilmesi için \"Grup Sahnesine\" bir kamera akışı \"eklemeniz\" gerekiyor.</li>\n<li>Misafirlerin ekranlarına yeni bir \"geliştirilmiş tam ekran\" düğmesi eklendi.</li>\n",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Geri",
"add-your-camera": "Kamera'nı OBS'ye Ekle",
"ask-for-permissions": "Allow Access to Camera/Microphone",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Sessiz",
"add-a-password": " Add a Password:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "OBS'ye uzaktan ekran paylaşımı",
"select-screen-to-share": "PAYLAŞILACAK EKRANI SEÇİN",
"audio-sources": "Ses Kaynakları",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Yeniden Kullanılabilir Davet Oluştur",
"here-you-can-pre-generate": "Burada tekrar kullanılabilir bir Tarayıcı Kaynak bağlantısı ve onunla ilişkili misafir davet bağlantısı oluşturabilirsin.",
"generate-invite-link": "DAVET BAĞLANTISINI OLUŞTUR",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "VP9 Codec'e Zorla (görüntüde daha az bozulma)",
"enable-stereo-and-pro": "Stereo ve Pro HD Sesi Etkinleştir",
"video-resolution": "Video Çözünürlüğü: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Force Default Microphone",
"hide-screen-share": "Ekran Paylaşma'yı Gizle",
"obfuscate_url": "Obfuscate the Invite URL",
"add-a-password-to-stream": " Şifre Ekle:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Odaya Misafiri Ekle:",
"invite-group-chat-type": "Bu oda misafiri:",
"can-see-and-hear": "Grup konuşmasını görebilir ve duyabilir",
"can-hear-only": "Grup konunşmasını sadece duyabilir",
"cant-see-or-hear": "Gup konuşmasını duyamaz ve göremez",
"share-local-video-file": "Stream Media File",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Share Website",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Run a Speed Test",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Browse the Guides",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n<h2>VDO.Ninja Nedir?</h2><br>\n<li>100% <b>bedava</b>; indirme yok; kişisel veri toplama yok; giriş yok</li>\n<li>Bilgisayarınızdan, dizüstünden, telefonunuzdan - hatta arkadaşlarınızdan görüntüleri OBS akışınızın içine alın</li>\n<li>Biz yeni nesil Peer-to-Peer (Kişiden-Kişiye) yönlendirme teknolojisi kullanıyoruz, bu sayede çok düşük gecikme ve gizlilik sağlayabiliyoruz</li>\n<br>\n<li>Youtube video <i class=\"fa fa-youtube-play\" aria-hidden=\"true\"></i> <a href=\"https://www.youtube.com/watch?v=QaA_6aOP9z8&amp;list=PLWodc2tCfAH1WHjl4WAOOoRSscJ8CHACe&amp;index=1\">Burada demoyu görebilirsiniz (ingilizce)</a> </li>\n<br><h3>\n🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>\n</h3>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Kameranın yüklenmesi bekleniyor",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -597,7 +605,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START",
"note-share-audio": "\n\t<b>note</b>: Chrome'da \"Sesi paylaş\" 'ı seçmeyi unutma.<br>(Firefox ses paylaşımını desteklemiyor.)",
"record": "Kaydet",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -612,12 +619,6 @@
"join-by-room-name-here": "Join by Room Name here",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Enter chat message to send here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -626,6 +627,12 @@
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Enter a Room Name here",
"optional-room-password-here": "Optional room password here",
"optional": "optional",
"give-this-media-source-a-name-optional-": "Give this media source a name (optional)",
"add-an-optional-password": "Add an optional password",
"enter-room-name-here": "Enter Room name here",
"-": "Введите пароль комнаты"
},
"miscellaneous": {
@@ -727,6 +734,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}

View File

@@ -5,6 +5,11 @@
"join-room": "Приєднатися до кімнати",
"enter-the-url-to-load": "Enter the URL to load",
"load-url": "Load URL",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"copy-link-to-clipboard": "Copy link to clipboard",
"save-and-ask-to-reload-the-current-page-on-next-site-visit": "Save and ask to reload the current page on next site visit",
"will-remember-the-room-prompting-you-the-next-time-you-visit-if-you-wish-to-load-this-director-s-room-again": "Will remember the room, prompting you the next time you visit if you wish to load this director's room again",
@@ -34,56 +39,12 @@
"next-slide": "Next slide",
"record-your-stream-to-disk": "Записати ваш стрім на диск",
"stop-screen-share-recording": "Stop screen share recording",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"cancel-the-director-s-video-audio": "Відмінити Відео/Аудіо режисера",
"submit-any-error-logs": "Відправити логи помилок",
"show-help-contact-info": "Show help contact info",
"language-options": "Варіанти мов",
"add-to-calendar": "Add to Calendar",
"add-group-chat-to-obs": "Додати груповий чат до OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Це опція може істотно змешнити навантаження на дистанційних гостей",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "Режисера буде видно у сценах так само як і учасників",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Який відеокодек використовувати за замовчуванням?",
"you-ll-enter-as-the-room-s-director": "Ви зайшли як режисер кімнати",
"add-your-camera-to-obs": "Додайте вашу камеру в OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"tip-hold-ctrl-command-to-select-multiple": "підказка: Тримайте CTRL (COMMAND) щоб обрати декілька",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"experimental": "experimental",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Показ віддаленого екрана в OBS",
"create-reusable-invite": "Створити багаторазове запрошення",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ідеально для ігор ( до1080p60 ), якщо ПК та швидкість аплоаду дозволяють це",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Краща компресія та якість відео за рахунок збільшення навантаження на СPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Відключити цифрові аудіо ефекти та підвищити аудіо бітрейт",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Гість не матиме змоги обирати аудіо опції",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Гість зможе обирати тільки власну вебкамеру",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Закодувати URL щоб було важче відгадати модифікацію налаштуваннь",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Додати пароль для уникнення перегляду стріму сторонніми особами без пароля",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Додати гостя до групового чату (буде створено автоматично за потреби)",
"customize-the-room-settings-for-this-guest": "Індивіалізувати налаштування кімнати для цього гостя",
"more-options": "Більше опцій",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Введіть HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"youtube-video-demoing-how-to-do-this": "Youtube відео з демострацією як це зробити",
"invite-a-guest-or-camera-source-to-publish-into-the-group-room": "Запросити гостя або віддалену камеру показати себе у груповій кімнаті",
"if-disabled-the-invited-guest-will-not-be-able-to-see-or-hear-anyone-in-the-room-": "Якщо вимкнути, запрошений гість не бачитиме/чутиме нікого у кімнаті",
@@ -130,6 +91,13 @@
"playback-the-video-with-mono-channel-audio": "Playback the video with mono-channel audio",
"have-the-videos-fit-their-respective-areas-even-if-it-means-cropping-a-bit": "Have the videos fit their respective areas, even if it means cropping a bit",
"have-videos-be-aligned-with-sizing-designed-for-vertical-video": "Have videos be aligned with sizing designed for vertical video",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"100-charging": "100% charging",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"remotely-change-the-volume-of-this-guest-updates-on-release-dbl-click-to-reset-": "Remotely change the volume of this guest; updates on release. Dbl-click to reset.",
"mute-this-guest-everywhere": "Вимкнути звук цього користувача усюди",
"disable-video-preview": "Вимкнути Відео попередні перегляди",
@@ -180,10 +148,27 @@
"add-remove-from-group-6": "Add/remove from group 6",
"remote-audio-settings": "Налаштування віддаленого аудіо",
"advanced-video-settings": "Розширені відео налаштування",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"add-to-scene-2": "Додати до сцени 2",
"activate-or-reload-this-video-device-": "Активувати чи перезапусти цей відео пристрій",
"tip-hold-ctrl-command-to-select-multiple": "підказка: Тримайте CTRL (COMMAND) щоб обрати декілька",
"experimental": "experimental",
"face-detection-api-not-detected-you-may-be-able-to-enable-it-here-chrome-flags-enable-experimental-web-platform-features": "Face Detection API not detected; you may be able to enable it here: chrome://flags/#enable-experimental-web-platform-features",
"improve-performance-and-quality-with-this-tip": "Improve performance and quality with this tip",
"adjust-the-amount-of-effect-applied": "Adjust the amount of effect applied",
"the-solo-view-link-of-the-director-s-video-": "The solo view link of the Director's video.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"only-one-option-available-so-can-t-be-changed": "Only one option available, so can't be changed",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-1280": "Previously was: 1280",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-720": "Previously was: 720",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"choose-a-hotkey-for-hold-to-talk-if-using-electron-capture-elevate-privilleges-to-have-it-become-global": "Choose a hotkey for Hold-to-Talk. If using Electron Capture, elevate privilleges to have it become global",
"draw-on-the-screen": "Draw on the Screen",
"ctrl-cmd-alt-d-to-toggle": "CTRL (cmd) + ALT + D to toggle",
@@ -214,34 +199,52 @@
"hide-this-window": "Hide this window",
"reload-the-page": "Reload the page",
"select-a-location-that-is-closest-to-both-you-and-your-audience-": "Select a location that is closest to both you and your audience.",
"number-of-outbound-connections": "Number of outbound connections",
"number-of-outbound-audio-streams": "Number of outbound audio streams",
"number-of-outbound-video-streams": "Number of outbound video streams",
"number-of-scenes-": "Number of scenes.",
"total-upload-bitrate": "Total upload bitrate",
"add-group-chat-to-obs": "Додати груповий чат до OBS",
"generate-a-random-room-name": "Generate a random room name",
"for-large-group-rooms-this-option-can-reduce-the-load-on-remote-guests-substantially": "Це опція може істотно змешнити навантаження на дистанційних гостей",
"the-director-will-be-visible-in-scenes-as-if-a-performer-themselves-": "Режисера буде видно у сценах так само як і учасників",
"if-checked-the-director-can-be-added-to-scenes-as-if-a-guest-otherwise-the-director-will-never-appear-in-a-scene-": "If checked, the director can be added to scenes as if a guest. Otherwise, the director will never appear in a scene.",
"which-video-codec-would-you-want-used-by-default-": "Який відеокодек використовувати за замовчуванням?",
"you-ll-enter-as-the-room-s-director": "Ви зайшли як режисер кімнати",
"add-your-camera-to-obs": "Додайте вашу камеру в OBS",
"right-click-this-video-for-additional-options": "Right-click this video for additional options",
"start-streaming-alt-s-": "Start streaming (Alt + s)",
"video-source-list": "Video source list",
"play-a-sound-out-of-the-selected-audio-playback-device": "Play a sound out of the selected audio playback device",
"enable-the-chrome-experimental-features-flag-to-use-chrome-flags-enable-experimental-web-platform-features": "Enable the Chrome experimental features flag to use: chrome://flags/#enable-experimental-web-platform-features",
"add-an-optional-password": "Add an optional password",
"enter-an-optional-password-here": "Enter an optional password here",
"remember-and-reuse-the-provided-stream-id-on-each-visit": "Remember and reuse the provided stream ID on each visit",
"consider-using-chrome-instead-of-safari": "Consider using Chrome instead of Safari",
"please-update-your-version-of-ios-for-best-performance": "Please update your version of iOS for best performance",
"go-back": "Go back",
"add-your-microphone-to-obs": "Add your Microphone to OBS",
"remote-screenshare-into-obs": "Показ віддаленого екрана в OBS",
"create-reusable-invite": "Створити багаторазове запрошення",
"ideal-for-1080p60-gaming-if-your-computer-and-upload-are-up-for-it": "Ідеально для ігор ( до1080p60 ), якщо ПК та швидкість аплоаду дозволяють це",
"better-video-compression-and-quality-at-the-cost-of-increased-cpu-encoding-load": "Краща компресія та якість відео за рахунок збільшення навантаження на СPU",
"disable-digital-audio-effects-and-increase-audio-bitrate": "Відключити цифрові аудіо ефекти та підвищити аудіо бітрейт",
"the-guest-will-be-able-to-select-digital-video-effects-to-apply-": "The guest will be able to select digital video effects to apply.",
"the-guest-will-not-have-a-choice-over-audio-options": "Гість не матиме змоги обирати аудіо опції",
"the-guest-will-only-be-able-to-select-their-webcam-as-an-option": "Гість зможе обирати тільки власну вебкамеру",
"encode-the-url-so-that-it-s-harder-for-a-guest-to-modify-the-settings-": "Закодувати URL щоб було важче відгадати модифікацію налаштуваннь",
"add-a-password-to-make-the-stream-inaccessible-to-those-without-the-password": "Додати пароль для уникнення перегляду стріму сторонніми особами без пароля",
"a-link-for-the-host-speaker-to-chat-with-the-guest-2-way-interview-chat-": "A link for the host speaker to chat with the guest; 2-way interview chat.",
"add-the-guest-to-a-group-chat-room-it-will-be-created-automatically-if-needed-": "Додати гостя до групового чату (буде створено автоматично за потреби)",
"customize-the-room-settings-for-this-guest": "Індивіалізувати налаштування кімнати для цього гостя",
"more-options": "Більше опцій",
"transfer-any-file": "Transfer any file",
"enter-an-https-url": "Введіть HTTPS URL",
"open-a-youtube-video-demoing-the-basics-of-vdo-ninja": "Open a YouTube video demoing the basics of VDO.Ninja",
"for-a-list-of-common-or-known-issues-click-here": "For a list of common or known issues, click here",
"click-to-link-out-to-the-vdo-ninja-help-guide-for-common-obs-studio-problems": "Click to link out to the VDO.Ninja help guide for common OBS Studio problems",
"open-a-page-with-recent-vdo-ninja-development-and-feature-updates": "Open a page with recent VDO.Ninja development and feature updates",
"info-on-the-native-app-versions-of-vdo-ninja": "Info on the native app versions of VDO.Ninja",
"mute-the-speaker": "Вимкнути динаміки",
"mute-the-mic": "Вимкнути мікрофон",
"disable-the-camera": "Заборонити камеру",
"this-is-the-preview-of-the-director-s-audio-and-video-output-": "This is the preview of the Director's audio and video output.",
"show-help-info": "Показати допомогу",
"does-not-impact-scene-order-": "Does not impact scene order.",
"copy-this-stream-id-to-the-clipboard": "Copy this Stream ID to the clipboard",
"minimize-this-control-box": "Minimize this control box",
"click-here-to-edit-the-label-for-this-stream-changes-will-propagate-to-all-viewers-of-this-stream": "Click here to edit the label for this stream. Changes will propagate to all viewers of this stream",
"video-packet-loss-indicator-of-video-preview-green-is-good-red-is-bad-flame-implies-cpu-is-overloaded-may-not-reflect-the-packet-loss-seen-by-scenes-or-other-guests-": "Video packet loss indicator of video preview; green is good, red is bad. Flame implies CPU is overloaded. May not reflect the packet loss seen by scenes or other guests.",
"hold-ctrl-or-cmd-while-clicking-the-video-to-open-detailed-stats": "Hold CTRL or CMD (⌘) while clicking the video to open detailed stats",
"previously-was-0": "Previously was: 0",
"this-will-refresh-the-current-device": "This will refresh the current device",
"this-will-ask-the-remote-guest-for-permission-to-change": "This will ask the remote guest for permission to change",
"a-direct-solo-view-of-the-video-audio-stream-with-nothing-else-its-audio-can-be-remotely-controlled-from-here": "A direct solo view of the video/audio stream with nothing else. Its audio can be remotely controlled from here",
"this-guest-raised-their-hand-click-this-to-clear-notification-": "This guest raised their hand. Click this to clear notification.",
"takes-the-guest-out-of-queue-mode-they-will-then-join-as-a-normal-guest-": "Takes the guest out of queue mode; they will then join as a normal guest.",
"this-will-reduce-the-gain-80-when-there-is-no-one-talking-loudly": "This will reduce the gain ~80% when there is no one talking loudly",
"previously-was-0-5625": "Previously was: 0.5625",
"previously-was-30-000030517578125": "Previously was: 30.000030517578125",
"previously-was-720": "Previously was: 720",
"hold-ctrl-or-cmd-to-lock-width-and-height-together-when-changing-them": "Hold CTRL (or cmd) to lock width and height together when changing them",
"previously-was-1280": "Previously was: 1280",
"join-by-room-name-here": "Швидкий вхід за назвою кімнати",
"create-a-secondary-stream": "Створити вторинний стрім",
"share-a-website-as-an-embedded-iframe": "Share a website as an embedded iFRAME",
@@ -266,7 +269,6 @@
"jump-to-the-documentation": "Jump to the documentation",
"100-battery-remaining": "100% battery remaining",
"for-more-known-issues-click-here": "For more known issues, click here",
"previously-was-1-7777777777777777": "Previously was: 1.7777777777777777",
"previously-was-29-970029830932617": "Previously was: 29.970029830932617",
"link-out-to-the-vdo-ninja-help-guide-for-obs-studio": "link out to the vdo.ninja help guide for OBS Studio",
"will-slowly-pan-tilt-and-zoom-in-on-the-first-face-detected": "Will slowly pan, tilt, and zoom in on the first face detected",
@@ -287,7 +289,6 @@
"set-to-default-audio-channel": "Аудіоканал 1 за замовчуванням",
"set-to-audio-channel-7": "Аудіоканал 1-7",
"set-to-audio-channel-8": "Аудіоканал 1-8",
"100-charging": "100% charging",
"this-will-reconnect-the-guest-s-active-video-source-": "This will reconnect the guest's active video source.",
"-": "Скрыть данное окно",
"-obs": "Рабочий стол (окно/вкладка браузера) в OBS",
@@ -324,94 +325,6 @@
"upload-chat": "<i class=\"las la-file-upload\"></i> Upload File",
"mute-the-mic": "\n<i id=\"mutetoggle\" class=\"toggleSize las la-microphone\" style=\"position: relative; top: 0.5px;\"></i>\n",
"disable-the-camera": "\n<i id=\"mutevideotoggle\" onmousedown=\"event.preventDefault(); event.stopPropagation();\" class=\"toggleSize las la-video\"></i>\n",
"add-group-chat": "Створити кімнату",
"rooms-allow-for": "Кімнати надають груповий чат та інструменти керування багатьма гостями",
"room-name": "Назва кімнати",
"password-input-field": "Пароль",
"guests-only-see-director": "Гості можуть бачити тільки відео режисера",
"scenes-can-see-director": "Режисер також виступатиме",
"default-codec-select": "Привілейований кодек відео: ",
"enter-the-rooms-control": "Вхід у контрольний центр кімнати",
"show-tips": "Підказки..",
"added-notes": "\n<u>\n\t<i>Важливі підказки:</i><br><br>\n</u>\n<li>Заборона ділитися відео між гостями значно покращує продуктивність</li>\n<li>Зпрошуйте тільки тих кому довіряєте</li>\n<li> \"Запис\" опція має вважатися експериментальною</li>\n<li><a href=\"https://params.VDO.Ninja\" style=\"color:black;\"><u>Розширені параметри</u></a>доступні</li>\n\t",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Назад",
"add-your-camera": "Додати власну камеру до OBS",
"ask-for-permissions": "Дозволити доступ до Камери/Мікрофона",
"waiting-for-camera": "Очікуємо завантаження камери",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"video-source": " Джерело відео ",
"up-to-4k": "4K",
"max-resolution": "1080p (HD)",
"balanced": "720p (збалансовано)",
"smooth-cool": "360p (плавно)",
"select-audio-source": " Джерела аудіо ",
"no-audio": "Без аудіо",
"select-output-source": " Вивід аудіо: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"add-a-password": " Додайте пароль:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Віддалена демонстрація екрана в OBS",
"select-screen-to-share": "Оберіть екран для показу",
"audio-sources": "Джерела аудіо",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Створити багаторазове запрошення",
"here-you-can-pre-generate": "Тут можна попередньо сгенерувати багаторазове браузерне посилання та споріднене запрошення гостю",
"generate-invite-link": "Сгенерувати запрошення-посилання",
"quality-paramaters": "Quality settings",
"unlock-video-bitrate": "Дозволити відео бітрейт (20mbps)",
"force-vp9-video-codec": "VP9 відео кодек примусово",
"enable-stereo-and-pro": "Вмикнути стерео та Pro HD аудіо",
"video-resolution": "Відео розмір: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Мікрофон за замовчуванням примусово",
"hide-screen-share": "Сховати опцію відобразити екран",
"obfuscate_url": "Зашифрувати URL запрошення",
"add-a-password-to-stream": " Додати пароль для стріма:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Додати гостя до кімнати:",
"invite-group-chat-type": "Цей гість може у груповому чаті:",
"can-see-and-hear": "читати та відповідати ",
"can-hear-only": " тільки читати",
"cant-see-or-hear": "не може бачити чи відповідати",
"share-local-video-file": "Показати відео з ПК",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Показати вебсайт",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Тест швидкодії",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Читати настанови",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n\t<h2>Що таке VDO.Ninja</h2>\n\t<br>\n\t<li>100% \n<b>free</b>; без завантажень; без збору персональних даних; без реєстрації\n\t</li>\n\t<li>Передає відео зі смартфонів,ПК напряму у ваш OBS відео стрім</li>\n\t<li>Ми використовуєму провідні технології P2P для забезпечення приватності та ультра низької затримки</li>\n<br>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>",
"hide-the-links": " LINKS (GUEST INVITES &amp; SCENES)",
"click-here-for-help": "Click Here for a quick overview and help",
"welcome-to-control-room": "\n<b>Welcome. This is the director's control-room for the group-chat.</b><br><br>\nYou can host a group chat with friends using a room. Share the blue link to invite guests who will join the chat automatically.\n<br><br>\n<font style=\"color:red\">Known Limitations with Group Rooms:</font><br>\n<li>A group room can handle up to around 30 guests, depending on numerous factors, including CPU and available bandwidth of all guests in the room. To achieve more than around 7-guests though, you will likely want to <a href=\"https://www.youtube.com/watch?v=bpRa8-UYCGc\" title=\"Youtube Video demoing how to do this\">disable video sharing between guests</a>. Using &amp;broadcast, &amp;roombitrate=0 or &amp;novideo are options there.</li>\n\n<li>Videos will appear of low quality on purpose for guests and director; this is to save bandwidth and CPU resources. It will be high-quality within OBS still though.</li>\n\n<li>The state of the scenes, such as which videos are active in a scene, are lost when the director resets the control-room or the scene.</li>\n<br>\nFurther Notes:<br><br>\n<li>Links to Solo-views of each guest video are offered under videos as they load. These can be used within an OBS Browser Source.</li>\n<li>You can use the auto-mixing Group Scenes, the green links, to auto arrange multiple videos for you in OBS.</li>\n<li>You can use this control room to record isolated video or audio streams, but it is an experimental feature still.</li>\n<li>If you transfer a guest from one room to another, they won't know which room they have been transferred to.</li>\n<li>OBS will see a guest's video in high-quality; the default video bitrate is 2500kbps. Setting higher bitrates will improve motion.</li>\n<li>VP8 is typically the default video codec, but using &amp;codec=vp9 or &amp;codec=h264 as a URL in OBS can help to reduce corrupted video puke issues.</li>\n<li>&amp;stereo=2 can be added to guests to turn off audio effects, such as echo cancellation and noise-reduction.</li>\n<li>https://invite.cam is a free service provided that can help obfuscuate the URL parameters of an invite link given to guests.</li>\n<li>Adding &amp;showonly=SOME_OBS_VIRTUALCAM to the guest invite links allows for only a single video to be seen by the guests; this can be output of the OBS Virtual Camera for example</li>\n<br>\n\nFor advanced URL options and parameters, <a href=\"https://github.com/steveseguin/vdo.ninja/wiki/Advanced-Settings\">see the Wiki.</a>\n\t",
@@ -463,15 +376,13 @@
"fade-videos-in": "Fade videos in",
"animate-mixing": "Animate mixing",
"add-margin": "Add margin to videos",
"unlock-video-bitrate": "Дозволити відео бітрейт (20mbps)",
"disable-downscaling": "Increase sharpness",
"force-mono-audio": "Force mono audio",
"fill-video-space": "Crop video to fit",
"vertical-aspect-ratio": "Vertical video mode",
"learn-more-about-params": "Learn more about URL parameters at ",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"add-a-label": "Add a label",
"mute": "Sesi Kıs",
"send-direct-chat": "Повідомлення",
"close": "close",
@@ -502,10 +413,36 @@
"force-keyframe": "Райдуга",
"advanced-audio-settings": "<i class=\"las la-sliders-h\"></i> Аудіо налаштування",
"advanced-camera-settings": "<i class=\"las la-sliders-h\"></i> Відео налаштування",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"record-director-local": " Record",
"solo-video-director": "Highlight",
"video-source": " Джерело відео ",
"max-resolution": "1080p (HD)",
"balanced": "720p (збалансовано)",
"smooth-cool": "360p (плавно)",
"select-audio-source": " Джерела аудіо ",
"select-output-source": " Вивід аудіо: ",
"select-avatar-image": " Default Avatar / Placeholder Image: ",
"select-digital-effect": " Digital Video Effects: ",
"no-effects-applied": "No effects applied",
"blurred-background": "Blurred background",
"blurred-background-2": "Blurred background 2 🧪",
"digital-greenscreen": "Digital greenscreen",
"virtual-background": "Virtual background",
"face-mesh": "Face mesh (slow load)",
"digital-zoom": "Digital zoom",
"anonymous-mask": "Anonymous mask",
"dog-face": "Dog ears and nose",
"face-tracker": "Face tracker",
"close-settings": "Close Settings",
"user": "User",
"hold-to-talk": "Hold-to-Talk Hot-key",
"clear": "Clear",
"enable": "Enable",
"stop": "Stop",
"cycle-between-audio-visualizations": "Cycle between several audio-visualizations styles",
"cleaer-sites-local-storage": "Clear site's local browser storage and saved settings",
"open-in-new-tab": "Відкрити у новій закладинці",
"copy-to-clipboard": "Скопіювати у буфер",
"edit-url": "Edit URL manually",
@@ -562,9 +499,80 @@
"add-to-outlook-calendar": "Add to Outlook Calendar",
"add-to-yahoo-calendar": "Add to Yahoo Calendar",
"reload-page": "Refresh",
"add-a-label": "Add a label",
"user-raised-hand": "Lower Raised Hand",
"remove-from-queue": "Activate Guest",
"add-group-chat": "Створити кімнату",
"rooms-allow-for": "Кімнати надають груповий чат та інструменти керування багатьма гостями",
"room-name": "Назва кімнати",
"password-input-field": "Пароль",
"guests-only-see-director": "Гості можуть бачити тільки відео режисера",
"scenes-can-see-director": "Режисер також виступатиме",
"default-codec-select": "Привілейований кодек відео: ",
"enter-the-rooms-control": "Вхід у контрольний центр кімнати",
"show-tips": "Підказки..",
"added-notes": "\n<u>\n\t<i>Важливі підказки:</i><br><br>\n</u>\n<li>Заборона ділитися відео між гостями значно покращує продуктивність</li>\n<li>Зпрошуйте тільки тих кому довіряєте</li>\n<li> \"Запис\" опція має вважатися експериментальною</li>\n<li><a href=\"https://params.VDO.Ninja\" style=\"color:black;\"><u>Розширені параметри</u></a>доступні</li>\n\t",
"looking-to-just-chat-and-not-direct": "Looking to just chat and not direct?",
"join-the-room-basic": "Join room as participant",
"back": "Назад",
"add-your-camera": "Додати власну камеру до OBS",
"ask-for-permissions": "Дозволити доступ до Камери/Мікрофона",
"start": "START",
"privacy-disabled": "Privacy warning: The director will be able to remotely access your camera and microphone if you continue.",
"for-the-best-possible-experience-make-sure": "For the best possible experience, make sure",
"your-device-is-powered": "Your device is powered",
"your-connection-is-hardwired-instead-of-wifi": "Your connection is hardwired instead of wifi",
"you-are-using-headphones-earphones": "You are using headphones / earphones",
"up-to-4k": "4K",
"no-audio": "Без аудіо",
"add-a-password": " Додайте пароль:",
"use-chrome-instead": "Consider using a Chromium-based browser instead.<br>\n Safari is more prone to having audio issues",
"update-your-device": "We've detected that you are using an old version of Apple iOS, which is known to have many issues.<br><br>Please consider updating.",
"add-your-microphone": "Add your Microphone to OBS",
"remote-screenshare-obs": "Віддалена демонстрація екрана в OBS",
"select-screen-to-share": "Оберіть екран для показу",
"audio-sources": "Джерела аудіо",
"application-audio-capture": "For application-specific audio capture, <a href=\"https://docs.vdo.ninja/audio\" style=\"color: #007AC8;\">see here</a>",
"1080p-screen-capture-guide": "For achieving 1080p60 game-capture, <a href=\"https://docs.vdo.ninja/guides/how-to-screen-share-in-1080p\" style=\"color: #007AC8;\" target=\"_blank\">see here</a>",
"create-reusable-invite": "Створити багаторазове запрошення",
"here-you-can-pre-generate": "Тут можна попередньо сгенерувати багаторазове браузерне посилання та споріднене запрошення гостю",
"generate-invite-link": "Сгенерувати запрошення-посилання",
"quality-paramaters": "Quality settings",
"force-vp9-video-codec": "VP9 відео кодек примусово",
"enable-stereo-and-pro": "Вмикнути стерео та Pro HD аудіо",
"video-resolution": "Відео розмір: ",
"general-paramaters": "User options",
"allow-effects-invite": "Allow video effects to be used",
"hide-mic-selection": "Мікрофон за замовчуванням примусово",
"hide-screen-share": "Сховати опцію відобразити екран",
"obfuscate_url": "Зашифрувати URL запрошення",
"add-a-password-to-stream": " Додати пароль для стріма:",
"interview-paramaters": "Two-way chat",
"generate-host-link": "Create a link for the host speaker",
"add-the-guest-to-a-room": " Додати гостя до кімнати:",
"invite-group-chat-type": "Цей гість може у груповому чаті:",
"can-see-and-hear": "читати та відповідати ",
"can-hear-only": " тільки читати",
"cant-see-or-hear": "не може бачити чи відповідати",
"share-local-video-file": "Показати відео з ПК",
"select-the-video-files-to-share": "SELECT THE VIDEO FILES TO SHARE",
"share-website-iframe": "Показати вебсайт",
"enter-the-website-URL-you-wish-to-share": "Enter the URL website you wish to share.",
"run-a-speed-test": "Тест швидкодії",
"try-the-mixer-out": "Try out the Mixer",
"try-out-versus-cam": "Multi-Stream Monitor",
"voice-comms-app": "Group Voice Comms",
"read-the-guides": "Читати настанови",
"wizard-link-generator": "Wizard Link Generator",
"get-full-documentation": "Full Documentation",
"get-the-source-code": "Source Code",
"show-your-support": "Show Your Support",
"publish-via-whip": "Publish via WHIP",
"share-whepsrc": "Share via WHEP",
"enter-the-whep-URL-you-wish-to-share": "Enter the WHEP URL you wish to share.",
"info-blob": "\n\t<h2>Що таке VDO.Ninja</h2>\n\t<br>\n\t<li>100% \n<b>free</b>; без завантажень; без збору персональних даних; без реєстрації\n\t</li>\n\t<li>Передає відео зі смартфонів,ПК напряму у ваш OBS відео стрім</li>\n\t<li>Ми використовуєму провідні технології P2P для забезпечення приватності та ультра низької затримки</li>\n<br>🛠 For support, see the <a href=\"https://www.reddit.com/r/VDONinja/\">sub-reddit <i class=\"lab la-reddit-alien\"></i></a> or join the <a href=\"https://discord.vdo.ninja/\">Discord <i class=\"lab la-discord\"></i></a>. The <a href=\"https://docs.vdo.ninja/\">documentation is here</a> and my personal email is <i>steve@seguin.email</i>",
"guest-1": "Guest 1",
"guest-2": "Guest 2",
"guest-3": "Guest 3",
"guest-4": "Guest 4",
"waiting-for-camera": "Очікуємо завантаження камери",
"local-global-record": "Local record - stop all",
"ok": "✔ OK",
"join-room": "Join room",
@@ -597,7 +605,6 @@
"guest-toggle": "Guest Toggle",
"settings": "Settings",
"more": "More",
"start": "START",
"note-share-audio": "\n<p>\n\t<video id=\"screenshare\" autoplay=\"true\" muted=\"true\" loop=\"\" src=\"./images/screenshare.webm\"></video>\n</p>\n\t",
"record": "Kaydet",
"change-to-low-quality": "&nbsp;&nbsp;<i class=\"las la-video-slash\"></i>",
@@ -612,12 +619,6 @@
"join-by-room-name-here": "приєднано до кімнати тут ",
"load-a-website-url": "Load a website URL",
"enter-chat-message-to-send-here": "Введіть чат повідомлення тут",
"enter-a-room-name-here": "Введіть назву кімнатиe",
"optional-room-password-here": "Необов`язковий пароль тут",
"optional": "опціонально",
"give-this-media-source-a-name-optional-": "Назвіть це медіа джерело (опціонально)",
"add-an-optional-password": "Додайте необов`язковий пароль",
"enter-room-name-here": "Введіть назву кімнати",
"enter-your-message-here": "Enter your message here",
"press-a-key-here": "press a key here",
"enter-a-url-for-the-sidebar-page": "Enter a URL for the sidebar page",
@@ -626,6 +627,12 @@
"enter-the-remote-obs-password-here": "Enter the remote OBS password here",
"enter-the-room-name-here": "Enter the room name here",
"enter-the-room-password-here": "Enter the room password here",
"enter-a-room-name-here": "Введіть назву кімнатиe",
"optional-room-password-here": "Необов`язковий пароль тут",
"optional": "опціонально",
"give-this-media-source-a-name-optional-": "Назвіть це медіа джерело (опціонально)",
"add-an-optional-password": "Додайте необов`язковий пароль",
"enter-room-name-here": "Введіть назву кімнати",
"-": "Введите пароль комнаты"
},
"miscellaneous": {
@@ -727,6 +734,9 @@
"enter-password-if-desired": "Enter a password if provided, otherwise just click Cancel",
"your-screenshare": "Your screenshare",
"your-camera": "Your camera",
"accept-inbound-caller": "Accept the inbound telephone caller?"
"accept-inbound-caller": "Accept the inbound telephone caller?",
"disable-video": "Disable Video",
"show-more-options": "Show more options",
"system-default": "System Default"
}
}