mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-31 01:59:06 -04:00
Add ConfigureDevice
This commit is contained in:
@@ -128,7 +128,7 @@ RGBController_Debug::RGBController_Debug(bool custom, json settings)
|
||||
location = name + " Location String";
|
||||
version = name + " Version String";
|
||||
serial = name + " Serial String";
|
||||
|
||||
flags = CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_NAME | CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_DEVICE_SPECIFIC;
|
||||
if(name_setting != "")
|
||||
{
|
||||
name = name_setting;
|
||||
|
||||
@@ -152,15 +152,15 @@ device_type RGBController::GetDeviceType()
|
||||
return(type);
|
||||
}
|
||||
|
||||
unsigned int RGBController::GetFlags()
|
||||
controller_flags RGBController::GetFlags()
|
||||
{
|
||||
unsigned int controller_flags;
|
||||
controller_flags flags_value;
|
||||
|
||||
AccessMutex.lock_shared();
|
||||
controller_flags = flags;
|
||||
flags_value = flags;
|
||||
AccessMutex.unlock_shared();
|
||||
|
||||
return(controller_flags);
|
||||
return(flags_value);
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------*\
|
||||
@@ -272,22 +272,22 @@ std::size_t RGBController::GetZoneCount()
|
||||
return(zones.size());
|
||||
}
|
||||
|
||||
unsigned int RGBController::GetZoneFlags(unsigned int zone)
|
||||
zone_flags RGBController::GetZoneFlags(unsigned int zone)
|
||||
{
|
||||
unsigned int zone_flags;
|
||||
zone_flags flags_value;
|
||||
|
||||
AccessMutex.lock_shared();
|
||||
if(zone < zones.size())
|
||||
{
|
||||
zone_flags = zones[zone].flags;
|
||||
flags_value = zones[zone].flags;
|
||||
}
|
||||
else
|
||||
{
|
||||
zone_flags = 0;
|
||||
flags_value = 0;
|
||||
}
|
||||
AccessMutex.unlock_shared();
|
||||
|
||||
return(zone_flags);
|
||||
return(flags_value);
|
||||
}
|
||||
|
||||
unsigned int RGBController::GetZoneLEDsCount(unsigned int zone)
|
||||
@@ -741,22 +741,22 @@ std::size_t RGBController::GetZoneSegmentCount(unsigned int zone)
|
||||
return(count);
|
||||
}
|
||||
|
||||
unsigned int RGBController::GetZoneSegmentFlags(unsigned int zone, unsigned int segment)
|
||||
segment_flags RGBController::GetZoneSegmentFlags(unsigned int zone, unsigned int segment)
|
||||
{
|
||||
unsigned int segment_flags;
|
||||
segment_flags flags_value;
|
||||
|
||||
AccessMutex.lock_shared();
|
||||
if((zone < zones.size()) && (segment < zones[zone].segments.size()))
|
||||
{
|
||||
segment_flags = zones[zone].segments[segment].flags;
|
||||
flags_value = zones[zone].segments[segment].flags;
|
||||
}
|
||||
else
|
||||
{
|
||||
segment_flags = 0;
|
||||
flags_value = 0;
|
||||
}
|
||||
AccessMutex.unlock_shared();
|
||||
|
||||
return(segment_flags);
|
||||
return(flags_value);
|
||||
}
|
||||
|
||||
unsigned int RGBController::GetZoneSegmentLEDsCount(unsigned int zone, unsigned int segment)
|
||||
@@ -2113,6 +2113,34 @@ void RGBController::ResizeZone(int zone_idx, int new_size)
|
||||
}
|
||||
}
|
||||
|
||||
void RGBController::ConfigureDevice(controller_flags new_flags, std::string new_name)
|
||||
{
|
||||
AccessMutex.lock();
|
||||
|
||||
if(flags & CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_NAME)
|
||||
{
|
||||
if(new_flags & CONTROLLER_FLAG_MANUALLY_CONFIGURED_NAME)
|
||||
{
|
||||
flags |= CONTROLLER_FLAG_MANUALLY_CONFIGURED_NAME;
|
||||
name = new_name;
|
||||
}
|
||||
else
|
||||
{
|
||||
flags &= ~CONTROLLER_FLAG_MANUALLY_CONFIGURED_NAME;
|
||||
}
|
||||
}
|
||||
|
||||
if(flags & CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_DEVICE_SPECIFIC)
|
||||
{
|
||||
flags &= ~CONTROLLER_FLAG_MANUALLY_CONFIGURED_DEVICE_SPECIFIC;
|
||||
flags |= (new_flags & CONTROLLER_FLAG_MANUALLY_CONFIGURED_DEVICE_SPECIFIC);
|
||||
}
|
||||
|
||||
AccessMutex.unlock();
|
||||
|
||||
SignalUpdate(RGBCONTROLLER_UPDATE_REASON_CONFIGUREDEVICE);
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------*\
|
||||
| Functions not part of interface for internal use only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
@@ -39,7 +39,7 @@ public:
|
||||
std::string GetLocation();
|
||||
|
||||
device_type GetDeviceType();
|
||||
unsigned int GetFlags();
|
||||
controller_flags GetFlags();
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Hidden Flag Functions |
|
||||
@@ -55,7 +55,7 @@ public:
|
||||
RGBColor GetZoneColor(unsigned int zone, unsigned int color_index);
|
||||
RGBColor* GetZoneColorsPointer(unsigned int zone);
|
||||
std::size_t GetZoneCount();
|
||||
unsigned int GetZoneFlags(unsigned int zone);
|
||||
zone_flags GetZoneFlags(unsigned int zone);
|
||||
unsigned int GetZoneLEDsCount(unsigned int zone);
|
||||
unsigned int GetZoneLEDsMax(unsigned int zone);
|
||||
unsigned int GetZoneLEDsMin(unsigned int zone);
|
||||
@@ -81,7 +81,7 @@ public:
|
||||
int GetZoneModeValue(unsigned int zone, unsigned int mode);
|
||||
std::string GetZoneName(unsigned int zone);
|
||||
std::size_t GetZoneSegmentCount(unsigned int zone);
|
||||
unsigned int GetZoneSegmentFlags(unsigned int zone, unsigned int segment);
|
||||
segment_flags GetZoneSegmentFlags(unsigned int zone, unsigned int segment);
|
||||
unsigned int GetZoneSegmentLEDsCount(unsigned int zone, unsigned int segment);
|
||||
matrix_map_type GetZoneSegmentMatrixMap(unsigned int zone, unsigned int segment);
|
||||
const unsigned int * GetZoneSegmentMatrixMapData(unsigned int zone, unsigned int segment);
|
||||
@@ -195,6 +195,8 @@ public:
|
||||
void ConfigureZone(int zone_idx, zone new_zone);
|
||||
void ResizeZone(int zone, int new_size);
|
||||
|
||||
void ConfigureDevice(controller_flags new_flags, std::string new_name);
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Functions to be implemented in device implementation |
|
||||
\*-----------------------------------------------------*/
|
||||
@@ -273,7 +275,7 @@ protected:
|
||||
| Controller variables |
|
||||
\*-----------------------------------------------------*/
|
||||
int active_mode = 0;/* active mode */
|
||||
unsigned int flags; /* controller flags */
|
||||
controller_flags flags; /* controller flags */
|
||||
device_type type; /* device type */
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
|
||||
@@ -52,6 +52,7 @@ enum
|
||||
/* SetDeviceSpecificConfiguration() called */
|
||||
RGBCONTROLLER_UPDATE_REASON_SETDEVICESPECIFICZONECONFIGURATION,
|
||||
/* SetDeviceSpecificZoneConfiguration() called */
|
||||
RGBCONTROLLER_UPDATE_REASON_CONFIGUREDEVICE, /* ConfigureDevice() called */
|
||||
};
|
||||
|
||||
/*---------------------------------------------------------*\
|
||||
@@ -155,6 +156,8 @@ enum
|
||||
/*---------------------------------------------------------*\
|
||||
| Segment Flags |
|
||||
\*---------------------------------------------------------*/
|
||||
typedef unsigned int segment_flags;
|
||||
|
||||
enum
|
||||
{
|
||||
SEGMENT_FLAG_GROUP_START = (1 << 0), /* Start of segment group */
|
||||
@@ -199,15 +202,29 @@ enum
|
||||
/*---------------------------------------------------------*\
|
||||
| Controller Flags |
|
||||
\*---------------------------------------------------------*/
|
||||
typedef unsigned int controller_flags;
|
||||
|
||||
#define CONTROLLER_FLAGS_MANUALLY_CONFIGURABLE (CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_NAME | \
|
||||
CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_DEVICE_SPECIFIC)
|
||||
|
||||
#define CONTROLLER_FLAGS_MANUALLY_CONFIGURED (CONTROLLER_FLAG_MANUALLY_CONFIGURED_NAME | \
|
||||
CONTROLLER_FLAG_MANUALLY_CONFIGURED_DEVICE_SPECIFIC)
|
||||
|
||||
enum
|
||||
{
|
||||
CONTROLLER_FLAG_LOCAL = (1 << 0), /* Device is local to this instance */
|
||||
CONTROLLER_FLAG_REMOTE = (1 << 1), /* Device is on a remote instance */
|
||||
CONTROLLER_FLAG_VIRTUAL = (1 << 2), /* Device is a virtual device */
|
||||
CONTROLLER_FLAG_HIDDEN = (1 << 3), /* Device is hidden */
|
||||
CONTROLLER_FLAG_LOCAL = (1 << 0), /* Device is local to this instance */
|
||||
CONTROLLER_FLAG_REMOTE = (1 << 1), /* Device is on a remote instance */
|
||||
CONTROLLER_FLAG_VIRTUAL = (1 << 2), /* Device is a virtual device */
|
||||
CONTROLLER_FLAG_HIDDEN = (1 << 3), /* Device is hidden */
|
||||
|
||||
CONTROLLER_FLAG_RESET_BEFORE_UPDATE = (1 << 8), /* Device resets update flag before */
|
||||
/* calling update function */
|
||||
CONTROLLER_FLAG_RESET_BEFORE_UPDATE = (1 << 8), /* Device resets update flag before */
|
||||
/* calling update function */
|
||||
|
||||
CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_NAME = (1 << 16),/* Device name is manually configurable */
|
||||
CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_DEVICE_SPECIFIC = (1 << 17),/* Device dev-specific cfg manually configurable */
|
||||
|
||||
CONTROLLER_FLAG_MANUALLY_CONFIGURED_NAME = (1 << 24),/* Device name is manually configured */
|
||||
CONTROLLER_FLAG_MANUALLY_CONFIGURED_DEVICE_SPECIFIC = (1 << 25),/* Device dev-specific cfg is manually configured */
|
||||
};
|
||||
|
||||
/*---------------------------------------------------------*\
|
||||
@@ -362,7 +379,7 @@ public:
|
||||
unsigned int start_idx; /* Start index within zone */
|
||||
unsigned int leds_count; /* Number of LEDs in segment */
|
||||
matrix_map_type matrix_map; /* Matrix map */
|
||||
unsigned int flags; /* Segment flags */
|
||||
segment_flags flags; /* Segment flags */
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Functionality defined inline so that it can be used |
|
||||
@@ -451,6 +468,7 @@ typedef struct
|
||||
| Controller variables |
|
||||
\*-----------------------------------------------------*/
|
||||
int active_mode; /* active mode */
|
||||
controller_flags flags; /* controller flags */
|
||||
device_type type; /* device type */
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
@@ -496,7 +514,7 @@ public:
|
||||
virtual std::string GetLocation() = 0;
|
||||
|
||||
virtual device_type GetDeviceType() = 0;
|
||||
virtual unsigned int GetFlags() = 0;
|
||||
virtual controller_flags GetFlags() = 0;
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Hidden Flag Functions |
|
||||
@@ -512,7 +530,7 @@ public:
|
||||
virtual RGBColor GetZoneColor(unsigned int zone, unsigned int color_index) = 0;
|
||||
virtual RGBColor* GetZoneColorsPointer(unsigned int zone) = 0;
|
||||
virtual std::size_t GetZoneCount() = 0;
|
||||
virtual unsigned int GetZoneFlags(unsigned int zone) = 0;
|
||||
virtual zone_flags GetZoneFlags(unsigned int zone) = 0;
|
||||
virtual unsigned int GetZoneLEDsCount(unsigned int zone) = 0;
|
||||
virtual unsigned int GetZoneLEDsMax(unsigned int zone) = 0;
|
||||
virtual unsigned int GetZoneLEDsMin(unsigned int zone) = 0;
|
||||
@@ -538,7 +556,7 @@ public:
|
||||
virtual int GetZoneModeValue(unsigned int zone, unsigned int mode) = 0;
|
||||
virtual std::string GetZoneName(unsigned int zone) = 0;
|
||||
virtual std::size_t GetZoneSegmentCount(unsigned int zone) = 0;
|
||||
virtual unsigned int GetZoneSegmentFlags(unsigned int zone, unsigned int segment) = 0;
|
||||
virtual segment_flags GetZoneSegmentFlags(unsigned int zone, unsigned int segment) = 0;
|
||||
virtual unsigned int GetZoneSegmentLEDsCount(unsigned int zone, unsigned int segment) = 0;
|
||||
virtual matrix_map_type GetZoneSegmentMatrixMap(unsigned int zone, unsigned int segment) = 0;
|
||||
virtual const unsigned int * GetZoneSegmentMatrixMapData(unsigned int zone, unsigned int segment) = 0;
|
||||
@@ -648,4 +666,6 @@ public:
|
||||
|
||||
virtual void ConfigureZone(int zone_idx, zone new_zone) = 0;
|
||||
virtual void ResizeZone(int zone, int new_size) = 0;
|
||||
|
||||
virtual void ConfigureDevice(controller_flags new_flags, std::string new_name) = 0;
|
||||
};
|
||||
|
||||
@@ -32,7 +32,12 @@ OpenRGBDeviceEditorDialog::OpenRGBDeviceEditorDialog(RGBController *dev, QWidget
|
||||
edit_dev = dev;
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Append zone name to window title |
|
||||
| Store device flags |
|
||||
\*-----------------------------------------------------*/
|
||||
edit_flags = dev->GetFlags();
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Append device name to window title |
|
||||
\*-----------------------------------------------------*/
|
||||
QString currentTitle = windowTitle();
|
||||
|
||||
@@ -41,29 +46,52 @@ OpenRGBDeviceEditorDialog::OpenRGBDeviceEditorDialog(RGBController *dev, QWidget
|
||||
setWindowTitle(newTitle);
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Initialize configuration schema and data |
|
||||
| Initialize device name |
|
||||
\*-----------------------------------------------------*/
|
||||
nlohmann::json configuration_schema = edit_dev->GetDeviceSpecificConfigurationSchema();
|
||||
nlohmann::json configuration_value = edit_dev->GetDeviceSpecificConfiguration();
|
||||
ui->LineEditDeviceName->blockSignals(true);
|
||||
ui->LineEditDeviceName->setText(QString::fromStdString(dev->GetName()));
|
||||
ui->LineEditDeviceName->blockSignals(false);
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Loop through the schema and create an entry for each |
|
||||
| setting |
|
||||
\*-----------------------------------------------------*/
|
||||
for(nlohmann::json::iterator json_iterator = configuration_schema.begin(); json_iterator != configuration_schema.end(); json_iterator++)
|
||||
if((edit_flags & CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_NAME) == 0)
|
||||
{
|
||||
nlohmann::json schema_entry = json_iterator.value();
|
||||
OpenRGBDynamicSettingsWidget* item_widget = new OpenRGBDynamicSettingsWidget(json_iterator.key(), schema_entry, configuration_value);
|
||||
|
||||
item_widget->SetCallback(Callback, this);
|
||||
ui->ScrollAreaDeviceConfigurationLayout->addWidget(item_widget);
|
||||
ui->LineEditDeviceName->setEnabled(false);
|
||||
}
|
||||
else if(edit_flags & CONTROLLER_FLAG_MANUALLY_CONFIGURED_NAME)
|
||||
{
|
||||
ui->LabelDeviceName->setText("Device Name (*):");
|
||||
}
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Add a spacer at the end to prevent expanding |
|
||||
\*-----------------------------------------------------*/
|
||||
QSpacerItem* spacer = new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
||||
ui->ScrollAreaDeviceConfigurationLayout->addItem(spacer);
|
||||
if(edit_flags & CONTROLLER_FLAG_MANUALLY_CONFIGURABLE_DEVICE_SPECIFIC)
|
||||
{
|
||||
/*-------------------------------------------------*\
|
||||
| Initialize configuration schema and data |
|
||||
\*-------------------------------------------------*/
|
||||
nlohmann::json configuration_schema = edit_dev->GetDeviceSpecificConfigurationSchema();
|
||||
nlohmann::json configuration_value = edit_dev->GetDeviceSpecificConfiguration();
|
||||
|
||||
/*-------------------------------------------------*\
|
||||
| Loop through the schema and create an entry for |
|
||||
| each setting |
|
||||
\*-------------------------------------------------*/
|
||||
for(nlohmann::json::iterator json_iterator = configuration_schema.begin(); json_iterator != configuration_schema.end(); json_iterator++)
|
||||
{
|
||||
nlohmann::json schema_entry = json_iterator.value();
|
||||
OpenRGBDynamicSettingsWidget* item_widget = new OpenRGBDynamicSettingsWidget(json_iterator.key(), schema_entry, configuration_value);
|
||||
|
||||
item_widget->SetCallback(Callback, this);
|
||||
ui->ScrollAreaDeviceConfigurationLayout->addWidget(item_widget);
|
||||
}
|
||||
|
||||
/*-------------------------------------------------*\
|
||||
| Add a spacer at the end to prevent expanding |
|
||||
\*-------------------------------------------------*/
|
||||
QSpacerItem* spacer = new QSpacerItem(0, 0, QSizePolicy::Minimum, QSizePolicy::Expanding);
|
||||
ui->ScrollAreaDeviceConfigurationLayout->addItem(spacer);
|
||||
}
|
||||
else
|
||||
{
|
||||
ui->GroupBoxDeviceSpecificConfiguration->setHidden(true);
|
||||
}
|
||||
}
|
||||
|
||||
OpenRGBDeviceEditorDialog::~OpenRGBDeviceEditorDialog()
|
||||
@@ -88,6 +116,16 @@ int OpenRGBDeviceEditorDialog::show()
|
||||
}
|
||||
else
|
||||
{
|
||||
/*-------------------------------------------------*\
|
||||
| Read the device name line edit |
|
||||
\*-------------------------------------------------*/
|
||||
std::string new_name = ui->LineEditDeviceName->text().toStdString();
|
||||
|
||||
/*-------------------------------------------------*\
|
||||
| Configure the device |
|
||||
\*-------------------------------------------------*/
|
||||
edit_dev->ConfigureDevice(edit_flags, new_name);
|
||||
|
||||
/*-------------------------------------------------*\
|
||||
| Apply the configuration |
|
||||
\*-------------------------------------------------*/
|
||||
@@ -107,7 +145,25 @@ int OpenRGBDeviceEditorDialog::show()
|
||||
return(ret_val);
|
||||
}
|
||||
|
||||
void OpenRGBDeviceEditorDialog::changeEvent(QEvent *event)
|
||||
{
|
||||
if(event->type() == QEvent::LanguageChange)
|
||||
{
|
||||
ui->retranslateUi(this);
|
||||
}
|
||||
}
|
||||
|
||||
void OpenRGBDeviceEditorDialog::on_LineEditDeviceName_textChanged(const QString& /*arg1*/)
|
||||
{
|
||||
if((edit_flags & CONTROLLER_FLAG_MANUALLY_CONFIGURED_NAME) == 0)
|
||||
{
|
||||
edit_flags |= CONTROLLER_FLAG_MANUALLY_CONFIGURED_NAME;
|
||||
ui->LabelDeviceName->setText("Device Name (*):");
|
||||
}
|
||||
}
|
||||
|
||||
void OpenRGBDeviceEditorDialog::OnSettingChanged(std::string /*key*/, nlohmann::json settings)
|
||||
{
|
||||
edit_flags |= CONTROLLER_FLAG_MANUALLY_CONFIGURED_DEVICE_SPECIFIC;
|
||||
device_configuration.update(settings, true);
|
||||
}
|
||||
|
||||
@@ -30,6 +30,10 @@ public:
|
||||
int show();
|
||||
void OnSettingChanged(std::string key, nlohmann::json settings);
|
||||
|
||||
private slots:
|
||||
void changeEvent(QEvent *event);
|
||||
void on_LineEditDeviceName_textChanged(const QString& arg1);
|
||||
|
||||
private:
|
||||
/*-----------------------------------------------------*\
|
||||
| UI Pointer |
|
||||
@@ -41,6 +45,11 @@ private:
|
||||
\*-----------------------------------------------------*/
|
||||
RGBController* edit_dev;
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Device flags |
|
||||
\*-----------------------------------------------------*/
|
||||
controller_flags edit_flags;
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Device configuration |
|
||||
\*-----------------------------------------------------*/
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<string>Device Editor</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0">
|
||||
<item row="1" column="0">
|
||||
<widget class="QGroupBox" name="GroupBoxDeviceSpecificConfiguration">
|
||||
<property name="title">
|
||||
<string>Device-Specific Configuration</string>
|
||||
@@ -31,7 +31,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>368</width>
|
||||
<height>232</height>
|
||||
<height>174</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="ScrollAreaDeviceConfigurationLayout"/>
|
||||
@@ -48,22 +48,60 @@
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QGroupBox" name="GroupBoxDeviceConfiguration">
|
||||
<property name="title">
|
||||
<string>Device Configuration</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_3">
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="LineEditDeviceName"/>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="LabelDeviceName">
|
||||
<property name="text">
|
||||
<string>Device Name:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
<connections>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>ButtonBox</sender>
|
||||
<signal>accepted()</signal>
|
||||
<receiver>OpenRGBDeviceEditorDialog</receiver>
|
||||
<slot>accept()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>20</x>
|
||||
<y>20</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>20</x>
|
||||
<y>20</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>ButtonBox</sender>
|
||||
<signal>rejected()</signal>
|
||||
<receiver>OpenRGBDeviceEditorDialog</receiver>
|
||||
<slot>reject()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>20</x>
|
||||
<y>20</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>20</x>
|
||||
<y>20</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
</ui>
|
||||
|
||||
@@ -520,11 +520,20 @@ void OpenRGBDevicePage::UpdateLEDList()
|
||||
}
|
||||
|
||||
/*-----------------------------------------*\
|
||||
| Editing is not allowed when all zones are |
|
||||
| selected at once |
|
||||
| Enable editing if controller has any |
|
||||
| MANUALLY_CONFIGURABLE flag |
|
||||
\*-----------------------------------------*/
|
||||
ui->EditZoneButton->setEnabled(true);
|
||||
ui->EditZoneButton->setText("Edit Device");
|
||||
bool is_editable = false;
|
||||
|
||||
controller_flags flags = device->GetFlags();
|
||||
|
||||
if((flags & CONTROLLER_FLAGS_MANUALLY_CONFIGURABLE) > 0)
|
||||
{
|
||||
is_editable = true;
|
||||
}
|
||||
|
||||
ui->EditButton->setEnabled(is_editable);
|
||||
ui->EditButton->setText(tr("Edit Device"));
|
||||
|
||||
if(!ui->ZoneBox->signalsBlocked())
|
||||
{
|
||||
@@ -567,10 +576,8 @@ void OpenRGBDevicePage::UpdateLEDList()
|
||||
}
|
||||
|
||||
/*-----------------------------------------*\
|
||||
| Enable editing if: |
|
||||
| Zone has variable size |
|
||||
| OR |
|
||||
| Zone has any MANUALLY_CONFIGURABLE flag |
|
||||
| Enable editing if zone has any |
|
||||
| MANUALLY_CONFIGURABLE flag |
|
||||
\*-----------------------------------------*/
|
||||
bool zone_is_editable = false;
|
||||
|
||||
@@ -581,8 +588,8 @@ void OpenRGBDevicePage::UpdateLEDList()
|
||||
zone_is_editable = true;
|
||||
}
|
||||
|
||||
ui->EditZoneButton->setEnabled(true);
|
||||
ui->EditZoneButton->setText("Edit Zone");
|
||||
ui->EditButton->setEnabled(zone_is_editable);
|
||||
ui->EditButton->setText(tr("Edit Zone"));
|
||||
|
||||
if(!ui->ZoneBox->signalsBlocked())
|
||||
{
|
||||
@@ -626,7 +633,7 @@ void OpenRGBDevicePage::UpdateLEDList()
|
||||
| Editing is not allowed when a segment is |
|
||||
| selected |
|
||||
\*-----------------------------------------*/
|
||||
ui->EditZoneButton->setEnabled(false);
|
||||
ui->EditButton->setEnabled(false);
|
||||
|
||||
if(!ui->ZoneBox->signalsBlocked())
|
||||
{
|
||||
@@ -1662,7 +1669,7 @@ void OpenRGBDevicePage::UpdateModeUi()
|
||||
ui->LEDBox->clear();
|
||||
ui->LEDBox->blockSignals(false);
|
||||
|
||||
ui->EditZoneButton->setEnabled(false);
|
||||
ui->EditButton->setEnabled(false);
|
||||
ui->ApplyColorsButton->setEnabled(false);
|
||||
break;
|
||||
|
||||
@@ -1720,11 +1727,11 @@ void OpenRGBDevicePage::UpdateModeUi()
|
||||
|
||||
if(device->GetModeColorsMin(selected_mode) == device->GetModeColorsMax(selected_mode))
|
||||
{
|
||||
ui->EditZoneButton->setEnabled(false);
|
||||
ui->EditButton->setEnabled(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
ui->EditZoneButton->setEnabled(true);
|
||||
ui->EditButton->setEnabled(true);
|
||||
}
|
||||
|
||||
for(unsigned int i = 0; i < device->GetModeColorsCount(selected_mode); i++)
|
||||
@@ -1783,11 +1790,6 @@ void OpenRGBDevicePage::UpdateZoneList()
|
||||
ui->ZoneBox->setCurrentIndex(0);
|
||||
ui->ZoneBox->blockSignals(false);
|
||||
ui->ApplyColorsButton->setEnabled(true);
|
||||
|
||||
/*-----------------------------------------------------*\
|
||||
| Update color picker with color of first LED |
|
||||
\*-----------------------------------------------------*/
|
||||
//on_LEDBox_currentIndexChanged(0);
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------*\
|
||||
@@ -2052,6 +2054,9 @@ void OpenRGBDevicePage::changeEvent(QEvent *event)
|
||||
if(event->type() == QEvent::LanguageChange)
|
||||
{
|
||||
ui->retranslateUi(this);
|
||||
UpdateZoneList();
|
||||
UpdateModeList();
|
||||
UpdateLEDList();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2192,7 +2197,7 @@ void OpenRGBDevicePage::on_DirectionBox_currentIndexChanged(int /*index*/)
|
||||
UpdateMode();
|
||||
}
|
||||
|
||||
void OpenRGBDevicePage::on_EditZoneButton_clicked()
|
||||
void OpenRGBDevicePage::on_EditButton_clicked()
|
||||
{
|
||||
/*-----------------------------------------------------*\
|
||||
| Determine what is selected, either all zones, a zone, |
|
||||
|
||||
@@ -107,7 +107,7 @@ private slots:
|
||||
void on_DeviceSaveButton_clicked();
|
||||
void on_DeviceViewBox_selectionChanged(int selected_zone, int selected_segment, std::vector<std::size_t>);
|
||||
void on_DirectionBox_currentIndexChanged(int index);
|
||||
void on_EditZoneButton_clicked();
|
||||
void on_EditButton_clicked();
|
||||
void on_GreenSpinBox_valueChanged(int green);
|
||||
void on_HexLineEdit_textChanged(const QString &arg1);
|
||||
void on_HueSpinBox_valueChanged(int hue);
|
||||
|
||||
@@ -227,9 +227,9 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="3">
|
||||
<widget class="QPushButton" name="EditZoneButton">
|
||||
<widget class="QPushButton" name="EditButton">
|
||||
<property name="text">
|
||||
<string>Edit Zone</string>
|
||||
<string>Edit</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -421,7 +421,7 @@
|
||||
</customwidgets>
|
||||
<tabstops>
|
||||
<tabstop>ZoneBox</tabstop>
|
||||
<tabstop>EditZoneButton</tabstop>
|
||||
<tabstop>EditButton</tabstop>
|
||||
<tabstop>LEDBox</tabstop>
|
||||
<tabstop>ApplyColorsButton</tabstop>
|
||||
<tabstop>SetAllButton</tabstop>
|
||||
|
||||
@@ -683,7 +683,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Рэдагаваць зону</translation>
|
||||
</message>
|
||||
@@ -704,7 +704,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Захаваць на прыладзе</translation>
|
||||
</message>
|
||||
@@ -714,112 +714,118 @@
|
||||
<translation>Гекс:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Рэдагаваць</translation>
|
||||
<translation>Рэдагаваць</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Задае статычны колер для асобных святлодыёдаў. Бяспечны для выкарыстання з праграмнымі эфектамі.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Задае статычны колер для асобных святлодыёдаў. Небяспечны для выкарыстання з праграмнымі эфектамі.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Задае адзіны колер для ўсёй прылады або зоны.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Паступова змяняецца паміж поўнасцю ўкл. і поўнасцю выкл.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Рэзка змяняецца паміж поўнасцю ўкл. і поўнасцю выкл.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Паступова перабірае ўвесь каляровы спектр. Усе святлодыёды прылады аднолькавага колеру.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Паступова перабірае ўвесь каляровы спектр. Стварае вясёлкавы ўзор, які рухаецца.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Мігае святлодыёдамі пры націсканні клавіш або кнопак.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Уся прылада</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Уся зона</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Налева</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Направа</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Уверх</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Уніз</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Гарызантальна</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Вертыкальна</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Захавана на прыладзе</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Захаванне не падтрымліваецца</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Усе зоны</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Вызначана рэжымам</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Увесь сегмент</translation>
|
||||
</message>
|
||||
|
||||
@@ -648,8 +648,9 @@
|
||||
<translation>Farbsättigung(S):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Bearbeiten</translation>
|
||||
<translation>Bearbeiten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="333"/>
|
||||
@@ -687,7 +688,7 @@
|
||||
<translation>Hellwert(V):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Zone bearbeiten</translation>
|
||||
</message>
|
||||
@@ -708,7 +709,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Auf Gerät speichern</translation>
|
||||
</message>
|
||||
@@ -718,108 +719,113 @@
|
||||
<translation>Hex:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Einzelne LEDs auf statische Farben einstellen. Sicher für die Verwendung mit softwaregesteuerten Effekten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Einzelne LEDs auf statische Farben einstellen. Nicht sicher für die Verwendung mit softwaregesteuerten Effekten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Setzt das gesamte Gerät oder eine Zone auf eine einzelne Farbe.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Allmähliche Überblendung zwischen vollständig ausgeschaltet und vollständig eingeschaltet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Wechselt abrupt zwischen vollständig ausgeschaltet und vollständig eingeschaltet.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Durchläuft allmählich das gesamte Farbspektrum. Alle Lichter des Geräts haben die gleiche Farbe.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Durchläuft allmählich das gesamte Farbspektrum. Erzeugt ein Regenbogenmuster, das sich bewegt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Leuchtet auf wenn Tasten betätigt werden.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Gesamtes Gerät</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Gesamte Zone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Rechts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Oben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Unten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Horizontal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Vertikal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Auf Gerät gespeichert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Speichern wird nicht unterstützt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Alle Zonen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Modus-spezifisch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Ganzes Segment</translation>
|
||||
</message>
|
||||
|
||||
@@ -641,6 +641,11 @@
|
||||
<source>Per-LED</source>
|
||||
<translation>Ανά λυχνία LED</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="281"/>
|
||||
<source>Zone:</source>
|
||||
@@ -667,7 +672,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Επεξεργασία Ζώνης</translation>
|
||||
</message>
|
||||
@@ -688,7 +693,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Αποθήκευση σε συσκευή</translation>
|
||||
</message>
|
||||
@@ -698,108 +703,113 @@
|
||||
<translation>Εξαδικαδικό:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Ορίστε μεμονωμένα LED σε στατικά χρώματα. Ασφαλές για χρήση με εφέ που οδηγούνται από λογισμικό.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Ορίστε μεμονωμένα LED σε στατικά χρώματα. Δεν είναι ασφαλές για χρήση με εφέ που οδηγούνται από λογισμικό.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Ρυθμίζει ολόκληρη τη συσκευή ή μια ζώνη σε ένα μόνο χρώμα.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Σβήνει σταδιακά μεταξύ πλήρως απενεργοποιημένου και πλήρως ενεργοποιημένου.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Αλλάζει απότομα μεταξύ πλήρως απενεργοποιημένου και πλήρως ενεργοποιημένου.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Διατρέχει σταδιακά όλο το φάσμα χρωμάτων. Όλα τα φώτα της συσκευής έχουν το ίδιο χρώμα.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Διατρέχει σταδιακά όλο το φάσμα χρωμάτων. Παράγει ένα μοτίβο ουράνιου τόξου που κινείται.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Αναβοσβήνει όταν πιέζονται πλήκτρα ή κουμπιά.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Ολόκληρη η συσκευή</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Ολόκληρη η ζώνη</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Αριστερά</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Δεξιά</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Πάνω</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Κάτω</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Οριζόντια</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Κάθετα</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Αποθηκεύτηκε στη συσκευή</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Η αποθήκευση δεν υποστηρίζεται</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Όλες οι ζώνες</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Συγκεκριμένη λειτουργία</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Ολόκληρο το Τμήμα</translation>
|
||||
</message>
|
||||
|
||||
@@ -611,6 +611,11 @@
|
||||
<source>Per-LED</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="281"/>
|
||||
<source>Zone:</source>
|
||||
@@ -637,7 +642,7 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@@ -658,7 +663,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@@ -668,108 +673,113 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Set individual LEDs to static colours. Safe for use with software-driven effects.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Set individual LEDs to static colours. Not safe for use with software-driven effects.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Sets the entire device or a zone to a single colour.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Gradually cycles through the entire colour spectrum. All lights on the device are the same colour.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Gradually cycles through the entire colour spectrum. Produces a rainbow pattern that moves.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
||||
@@ -611,6 +611,11 @@
|
||||
<source>Per-LED</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="281"/>
|
||||
<source>Zone:</source>
|
||||
@@ -637,7 +642,7 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@@ -658,7 +663,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@@ -668,108 +673,113 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Set individual LEDs to static colours. Safe for use with software-driven effects.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Set individual LEDs to static colours. Not safe for use with software-driven effects.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Sets the entire device or a zone to a single colour.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Gradually cycles through the entire colour spectrum. All lights on the device are the same colour.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Gradually cycles through the entire colour spectrum. Produces a rainbow pattern that moves.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
||||
@@ -611,6 +611,11 @@
|
||||
<source>Per-LED</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="281"/>
|
||||
<source>Zone:</source>
|
||||
@@ -637,7 +642,7 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@@ -658,7 +663,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
@@ -668,108 +673,113 @@
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
||||
@@ -683,7 +683,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Editar Zona</translation>
|
||||
</message>
|
||||
@@ -704,7 +704,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Guardar en dispositivo</translation>
|
||||
</message>
|
||||
@@ -714,112 +714,118 @@
|
||||
<translation>Hex</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Editar</translation>
|
||||
<translation>Editar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Aplicar colores estáticos a LEDs individualmente. Compatible con los efectos generados en software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Aplicar colores estáticos a LEDs individualmente. No compatible con los efectos generados en software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Aplica un color a una zona o a todo el dispositivo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Alterna gradualmente entre apagado y encendido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Alterna bruscamente entre apagado y encendido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Rotación entre todos los colores del espectro. Produce un patrón de arcoíris estático.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Rotación entre todos los colores del espectro. Produce un patrón de arcoíris que se mueve.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Produce destellos de luz al apretar teclas o botones.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Dispositivo entero</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Zona entera</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Izquierda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Derecha</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Arriba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Abajo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Horizontal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Vertical</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Guardado en dispositivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>El dispositivo no admite guardado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Todas las zonas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Específico al modo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Segmento completo</translation>
|
||||
</message>
|
||||
|
||||
@@ -683,7 +683,7 @@
|
||||
<translation>V :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Éditer la zone</translation>
|
||||
</message>
|
||||
@@ -704,7 +704,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Sauvegarder dans le périphérique</translation>
|
||||
</message>
|
||||
@@ -714,112 +714,118 @@
|
||||
<translation>Hexadécimal :</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Éditer</translation>
|
||||
<translation>Éditer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Défini individuellement la couleur de chaque LED. Fiable pour utiliser des effets logiciels.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Défini individuellement la couleur de chaque LED. Non fiable pour utiliser des effets logiciels.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Défini la couleur pour un périphérique ou une zone entière.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Change graduellement entre allumé et éteint.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Change directement entre allumé et éteint.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Change graduellement la couleur pour couvrir tout le spectre lumineux. Toutes les LEDs sont de la même couleur.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Change graduellement la couleur pour couvrir tout le spectre lumineux. Produit un motif d'arc en ciel en mouvement.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Illumine les touches lors d'un appui clavier.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Périphérique entier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Zone entière</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Segment entier</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Gauche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Droite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Haut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Bas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Horizontal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Vertical</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Sauvegardé dans le périphérique</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Sauvegarde matérielle non supportée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Toutes les zones</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Spécifique au mode</translation>
|
||||
</message>
|
||||
|
||||
@@ -642,6 +642,11 @@
|
||||
<source>Per-LED</source>
|
||||
<translation>Po-LED</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="281"/>
|
||||
<source>Zone:</source>
|
||||
@@ -668,7 +673,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Uredi zonu</translation>
|
||||
</message>
|
||||
@@ -689,7 +694,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Spremi u uređaj</translation>
|
||||
</message>
|
||||
@@ -699,108 +704,113 @@
|
||||
<translation>Hex:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Postavite pojedinačne LED diode na nepromjenjive boje. Siguran za korištenje sa softverski upravljanim efektima.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Postavite pojedinačne LED diode na nepromjenjive boje. Nije sigurno za korištenje sa softverski upravljanim efektima.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Postavlja cijeli uređaj ili zonu na jednu boju.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Postupno blijedi između potpuno isključenog i potpuno uključenog.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Naglo se mijenja između potpuno isključenog i potpuno uključenog.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Postupno kruži cijelim spektrom boja. Sva svjetla na uređaju su iste boje.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Postupno kruži cijelim spektrom boja. Stvara dugin uzorak koji se kreće.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Svjetla trepere kad se pritisnu tipke ili gumbi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Cijeli uređaj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Cijela zona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Lijevo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Desno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Gore</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Dolje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Vodoravno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Okomito</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Spremljeno u uređaj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Spremanje nije podržano</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Sve zone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Specifičan način</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Cijeli segment</translation>
|
||||
</message>
|
||||
|
||||
@@ -683,7 +683,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Modifica zona</translation>
|
||||
</message>
|
||||
@@ -704,7 +704,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Salva Sul Dispositivo</translation>
|
||||
</message>
|
||||
@@ -714,112 +714,118 @@
|
||||
<translation>Esadecimale:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Modifica</translation>
|
||||
<translation>Modifica</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Imposta LED individuali su colori statici. Sicuro per l'utilizzo con effetti guidati dal software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Imposta LED individuali su colori statici. Non sicuro per l'utilizzo con effetti guidati dal software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Imposta l'intero dispositivo o una zona su un solo colore.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Sfuma gradualmente fra completamente spento e completamente acceso.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Cambia bruscamente fra completamente spento e completamente acceso.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Ripete gradualmente l'intero spettro dei colori. Tutte le luci sul dispositivo sono dello stesso colore.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Ripete gradualmente l'intero spettro dei colori. Produce una fantasia arcobaleno che si muove.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Fa lampeggiare le luci quando tasti o pulsanti vengono premuti.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Intero Dispositivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Intera Zona</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Sinistra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Destra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Su</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Giù</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Orizzontale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Verticale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Salvato Sul Dispositivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Salvataggio Non Supportato</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Tutte le Zone</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Specifico della Modalità</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Intero Segmento</translation>
|
||||
</message>
|
||||
|
||||
@@ -667,7 +667,7 @@
|
||||
<translation>明度(V):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>ゾーンの編集</translation>
|
||||
</message>
|
||||
@@ -688,7 +688,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>デバイスに保存</translation>
|
||||
</message>
|
||||
@@ -698,112 +698,118 @@
|
||||
<translation>Hex:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">編集</translation>
|
||||
<translation>編集</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>個々のLEDを固定に設定する。 ソフトウェア駆動のエフェクトで使用しても安全です。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>個々のLEDを固定に設定する。 ソフトウェア駆動のエフェクトで使用すると不安定な動作の原因になります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>デバイス全体またはゾーンを1色に設定。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>消灯と点灯の間で徐々にフェードイン・オフします。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>消灯と点灯を繰り返す。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>全色を徐々に循環させます。 デバイスのライトはすべて同じ色になります。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>全色のスペクトルを徐々に循環させる。 動く虹のパターンを作り出す。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>キーやボタンが押されると、ライトが点滅します。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>LED全て</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>ゾーン全て</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>左</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>右</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>上</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>下</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>水平</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>垂直</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>デバイスに保存しました</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>設定の保存が非対応です</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>全てのゾーン</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>特定のモード</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>セグメント全体</translation>
|
||||
</message>
|
||||
|
||||
@@ -683,7 +683,7 @@
|
||||
<translation>명도(V):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>존 편집</translation>
|
||||
</message>
|
||||
@@ -704,13 +704,14 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>장치에 저장</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">편집</translation>
|
||||
<translation>편집</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="143"/>
|
||||
@@ -718,108 +719,113 @@
|
||||
<translation>HEX:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>개별 LED를 정적 색상으로 설정합니다. 소프트웨어 기반 이펙트와 같이 사용해도 안전합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>개별 LED를 정적 색상으로 설정합니다. 소프트웨어 기반 이펙트와 같이 사용하기에는 안전하지 않습니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>전체 장치 혹은 구역을 한가지 색상으로 설정합니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>완전히 꺼지고 켜진 상태 사이에서 서서히 페이드됩니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>완전히 꺼지고 켜진 상태 사이에서 갑자기 변경됩니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>전체 색상 스펙트럼을 서서히 순환합니다. 장치의 모든 조명이 같은 색으로 표시됩니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>전체 색상 스펙트럼을 서서히 순환합니다. 움직이는 무지개 무늬를 나타냅니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>키나 버튼을 누르면 불빛이 깜박입니다.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>장치 전체</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>구역 전체</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>왼쪽</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>오른쪽</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>위</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>아래</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>가로</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>세로</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>장치에 저장됨</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>저장이 지원되지 않습니다</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>모든 구역</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>특정 모드</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>세그먼트 전체</translation>
|
||||
</message>
|
||||
|
||||
@@ -613,12 +613,12 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Simpan Ke Peranti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Sunting Zon</translation>
|
||||
</message>
|
||||
@@ -677,6 +677,11 @@
|
||||
<source>Mode-Specific</source>
|
||||
<translation>Mod-Khusus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="253"/>
|
||||
<source>Apply Colors To Selection</source>
|
||||
@@ -698,108 +703,113 @@
|
||||
<translation>Hex:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Tetapkan LED individu kepada warna statik. Selamat untuk digunakan dengan kesan dipacu perisian.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Tetapkan LED individu kepada warna statik. Tidak selamat untuk digunakan dengan kesan dipacu perisian.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Menetapkan keseluruhan peranti atau zon kepada satu warna.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Secara beransur-ansur pudar antara mati sepenuhnya dan hidup sepenuhnya.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Berubah secara mendadak antara mati sepenuhnya dan hidup sepenuhnya.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Secara beransur-ansur kitaran melalui keseluruhan spektrum warna. Semua lampu pada peranti adalah warna yang sama.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Secara beransur-ansur kitaran melalui keseluruhan spektrum warna. Menghasilkan corak pelangi yang bergerak.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Berkelip lampu apabila butang ditekan.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Keseluruhan Peranti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Keseluruhan Zon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Kiri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Kanan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Atas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Bawah</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Mendatar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Menegak</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Disimpan Ke Peranti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Simpanan Tidak Disokong</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Semua Zon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Mod Khusus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Segmen Seluruh</translation>
|
||||
</message>
|
||||
|
||||
@@ -648,8 +648,9 @@
|
||||
<translation>S:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Rediger</translation>
|
||||
<translation>Rediger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="333"/>
|
||||
@@ -687,7 +688,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Rediger zone</translation>
|
||||
</message>
|
||||
@@ -708,7 +709,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Lagre til enheten</translation>
|
||||
</message>
|
||||
@@ -718,108 +719,113 @@
|
||||
<translation>Hex:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Sett individuelle LEDer til statiske farger. Trygt for bruk med programvaredrevne effekter.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Sett individuelle LEDer til statiske farger. Ikke trygt for bruk med programvaredrevne effekter.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Setter hele enheten eller en sone til en enkelt farge.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Tones gradvis mellom helt av og helt på.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Skifter brått mellom helt av og helt på.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Går gradvis gjennom hele fargespekteret. Alle lysene på enheten er samme farge.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Går gradvis gjennom hele fargespekteret. Gir et regnbuemønster som beveger seg.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Blinker lyser når taster eller knapper trykkes.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Hele enheten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Hele sonen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Venstre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Høyre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Opp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Ned</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Horisontal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Vertikal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Lagret til enhet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Lagring ikke støttet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Alle soner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Modus spesifikk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Hele segmentet</translation>
|
||||
</message>
|
||||
|
||||
@@ -641,6 +641,11 @@
|
||||
<source>Per-LED</source>
|
||||
<translation>Dla każdego LEDa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="281"/>
|
||||
<source>Zone:</source>
|
||||
@@ -667,7 +672,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Edytuj strefę</translation>
|
||||
</message>
|
||||
@@ -688,7 +693,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Zapisz w urządzeniu</translation>
|
||||
</message>
|
||||
@@ -698,108 +703,113 @@
|
||||
<translation>Hex:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Ustawia statyczny kolor w poszczególnych LEDach. Bezpieczne w użyciu wraz z zaprogramowanymi efektami.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Ustawia statyczny kolor w poszczególnych LEDach. Nie jest bezpieczne w użyciu wraz z zaprogramowanymi efektami.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Ustawia całe urządzenie lub strefę w jednakowym kolorze.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Stopniowo przechodzi pomiędzy w pełni włączonym i wyłączonym.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Gwałtownie przechodzi pomiędzy w pełni włączonym i wyłączonym.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Stopniowo przechodzi przez całe spektrum kolorów. Wszytkie światła w urządzeniu są tego samego koloru.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Stopniowo przechodzi przez całe spektrum kolorów. Wytwarza kolory tęczy które się poruszają.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Błyska światłem gdy klawisze lub guziki są wciskane/</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Całe urządzenie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Cała strefa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Lewo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Prawo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Góra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Dół</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Poziomo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Pionowo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Zapisany w urządzeniu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Zapis niewspierany</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Wszystkie strefy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Dedykowane w trybie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Cały segment</translation>
|
||||
</message>
|
||||
|
||||
@@ -683,7 +683,7 @@
|
||||
<translation>Luminosidade:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Editar Zona</translation>
|
||||
</message>
|
||||
@@ -704,7 +704,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Salvar no dispositivo</translation>
|
||||
</message>
|
||||
@@ -714,112 +714,118 @@
|
||||
<translation>Hexadecimal:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Editar</translation>
|
||||
<translation>Editar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Defina LEDs individuais para cores estáticas. Seguro para uso com efeitos controlados por software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Defina LEDs individuais para cores estáticas. Não é seguro para uso com efeitos controlados por software.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Define todo o dispositivo ou uma zona para uma única cor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Transiciona gradualmente entre totalmente desligado e totalmente ligado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Muda de forma brusca entre totalmente desligado e totalmente ligado.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Gradualmente percorre todo o espectro de cores. Todas as luzes do dispositivo são da mesma cor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Gradualmente percorre todo o espectro de cores. Produz um padrão de arco-íris que se move.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Pisca as luzes quando as teclas ou botões são pressionados.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Dispositivo inteiro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Zona inteira</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Esquerda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Direita</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Cima</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Baixo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Horizontal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Vertical</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Salvo no dispositivo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Não há suporte para salvar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Todas as zonas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Específico ao modo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Segmento inteiro</translation>
|
||||
</message>
|
||||
|
||||
@@ -659,8 +659,9 @@
|
||||
<translation>Светодиод: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Редактировать</translation>
|
||||
<translation>Редактировать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="218"/>
|
||||
@@ -719,7 +720,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Редактировать зону</translation>
|
||||
</message>
|
||||
@@ -740,113 +741,118 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Сохранить на устройстве</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Устанавливает статичный цвет для каждого светодиода. Безопасен для использования с программными эффектами.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Устанавливает статичный цвет для каждого светодиода. Небезопасен для использования с программными эффектами.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Задаёт один цвет для всего устройства или области.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Плавно включается и выключается.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Резко включается и выключается.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Плавно меняет цвет по радуге. Все светодиоды устройства одного цвета.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Плавно меняет цвет. Создаёт движущуюся радугу.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Вспыхивает при нажатии клавишей или кнопок.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Устройство целиком</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Область целиком</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Сегмент целиком</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Влево</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Вправо</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Вверх</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Вниз</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Горизонтально</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Вертикально</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Сохранено на устройстве</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Сохранение не поддерживается</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Все области</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Задаётся режимом</translation>
|
||||
</message>
|
||||
|
||||
@@ -633,8 +633,9 @@
|
||||
<translation>LED:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">Редагувати</translation>
|
||||
<translation>Редагувати</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="218"/>
|
||||
@@ -692,7 +693,7 @@
|
||||
<translation>V:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>Редагувати зону</translation>
|
||||
</message>
|
||||
@@ -713,113 +714,118 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>Зберегти на пристрої</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>Встановлює статичний колір для кожного світлодіода. Безпечний для використання з програмними ефектами.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>Встановлює статичний колір для кожного світлодіода. Небезпечний для використання з програмними ефектами.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>Задає один колір для всього пристрою чи зони.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>Поступово переходить між повним вимкненням та увімкненням.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>Різко змінює стан між повним вимкненням та увімкненням.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>Повільно змінює кольори у всьому спектрі. Усі світлодіоди пристрою мають однаковий колір.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>Повільно змінює кольори у всьому спектрі. Створює рухому веселку.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>Світлодіоди блимуть при натисканні клавіш чи кнопок.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>Весь пристрій</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>Вся зона</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>Весь сегмент</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>Вліво</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>Вправо</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>Вгору</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>Донизу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>Горизонтально</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>Вертикально</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>Збережено на пристрої</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>Збереження не підтримується</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>Всі зони</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>Специфічно для режиму</translation>
|
||||
</message>
|
||||
|
||||
@@ -683,7 +683,7 @@
|
||||
<translation>明度(V):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>编辑区域</translation>
|
||||
</message>
|
||||
@@ -704,7 +704,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>保存到设备</translation>
|
||||
</message>
|
||||
@@ -714,112 +714,118 @@
|
||||
<translation>HEX:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="vanished">编辑</translation>
|
||||
<translation>编辑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>将单个 LED 设置为静态颜色。 可安全地与软件驱动的效果一起使用。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>将单个 LED 设置为静态颜色。 与软件驱动的效果一起使用不安全。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>将整个设备或区域设置为单一颜色。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>在完全关闭和完全打开之间逐渐淡出。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>在完全关闭和完全打开之间突然变化。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>在整个色谱中逐渐循环。 设备上的所有指示灯都是相同的颜色。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>在整个色谱中逐渐循环。 生成移动的彩虹图案。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>按下按键或按钮时闪烁。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>整个设备</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>整个区域</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>左</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>右</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>上</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>下</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>水平</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>垂直</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>已保存到设备</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>不支持保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>所有区域</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>特定模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>整个区段</translation>
|
||||
</message>
|
||||
|
||||
@@ -641,6 +641,11 @@
|
||||
<source>Per-LED</source>
|
||||
<translation>單色</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="281"/>
|
||||
<source>Zone:</source>
|
||||
@@ -667,7 +672,7 @@
|
||||
<translation>明度(V):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="232"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="592"/>
|
||||
<source>Edit Zone</source>
|
||||
<translation>编辑区域</translation>
|
||||
</message>
|
||||
@@ -688,7 +693,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.ui" line="183"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1610"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1617"/>
|
||||
<source>Save To Device</source>
|
||||
<translation>保存到設備</translation>
|
||||
</message>
|
||||
@@ -698,108 +703,113 @@
|
||||
<translation>十六进制:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1966"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<source>Set individual LEDs to static colors. Safe for use with software-driven effects.</source>
|
||||
<translation>將單個 LED 設置為靜態顏色。 可安全使用軟體驅動效果。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1967"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<source>Set individual LEDs to static colors. Not safe for use with software-driven effects.</source>
|
||||
<translation>將單個 LED 設置為靜態顏色。 與軟體驅動的效果一起使用不安全。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1968"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<source>Sets the entire device or a zone to a single color.</source>
|
||||
<translation>將整個設備或區域設置為單一顏色。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1969"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<source>Gradually fades between fully off and fully on.</source>
|
||||
<translation>在完全關閉和完全打開之間逐漸淡出。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1970"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<source>Abruptly changes between fully off and fully on.</source>
|
||||
<translation>在完全關閉和完全打開之間突然變化。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1971"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<source>Gradually cycles through the entire color spectrum. All lights on the device are the same color.</source>
|
||||
<translation>在整個色譜中逐漸循環。 設備上的所有指示燈都是相同的顏色。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1972"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1974"/>
|
||||
<source>Gradually cycles through the entire color spectrum. Produces a rainbow pattern that moves.</source>
|
||||
<translation>在整個色譜中逐漸循環。 生成移動的彩虹圖案。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1973"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1975"/>
|
||||
<source>Flashes lights when keys or buttons are pressed.</source>
|
||||
<translation>按下按鍵或按鈕時閃爍。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1759"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1766"/>
|
||||
<source>Entire Device</source>
|
||||
<translation>整個設備</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="552"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="536"/>
|
||||
<source>Edit Device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="561"/>
|
||||
<source>Entire Zone</source>
|
||||
<translation>整個區域</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1492"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<source>Left</source>
|
||||
<translation>左</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1493"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1500"/>
|
||||
<source>Right</source>
|
||||
<translation>右</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1498"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<source>Up</source>
|
||||
<translation>上</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1499"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1506"/>
|
||||
<source>Down</source>
|
||||
<translation>下</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1504"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1511"/>
|
||||
<source>Horizontal</source>
|
||||
<translation>水平</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1505"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1512"/>
|
||||
<source>Vertical</source>
|
||||
<translation>垂直</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1605"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1612"/>
|
||||
<source>Saved To Device</source>
|
||||
<translation>保存到設備</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1615"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1622"/>
|
||||
<source>Saving Not Supported</source>
|
||||
<translation>不支持保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1675"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1682"/>
|
||||
<source>All Zones</source>
|
||||
<translation>所有區域</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1713"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="1720"/>
|
||||
<source>Mode Specific</source>
|
||||
<translation>特定模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="608"/>
|
||||
<location filename="../OpenRGBDevicePage/OpenRGBDevicePage.cpp" line="615"/>
|
||||
<source>Entire Segment</source>
|
||||
<translation>整个段</translation>
|
||||
</message>
|
||||
|
||||
Reference in New Issue
Block a user