mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
* Initial Localization Implementation * Fix Initial Spinner * Language Picker Dropdown * RU Localization Update Co-Authored-By: Artur <83028930+netsvetaev@users.noreply.github.com> * Fixed localization breaking themes * useUpdateTranslation Hook To force trigger translations for data objects * Localize Tab Data * Localize Prompt Input & Current Image Buttons * Localize Gallery & Bug FIxes Fix a bug where the delete image from the context menu wasn't working. Removed tooltips that were broken as they don't work in context menu. * Fix localization breaking in production * Add Toast Localization Support * Localize Unified Canvas * Localize WIP Tabs * Localize Hotkeys * Localize Settings * RU Localization Update Co-Authored-By: Artur <83028930+netsvetaev@users.noreply.github.com> * Add Support for Italian and Portuguese * Localize Toasts * Fix width of language picker items * Localize Backend Messages * Disable Debug Messages * Add Support for French * Fix missing localization for a string in the SettingsModal * Disable French * Styling updates to normalize text and accommodate other langs * Add Portuguese Brazilian * Fix Hotkey headers not being localized. * Fix styling issue on models tag in Settings * Fix Slider Styling to accommodate different languages * Fix slider styling in light mode. * Add German * Add Italian * Add Polish * Update Italian * Localized Frontend Build * Updated RU Translations * Fresh Build with updated RU changes * Bug Fixes and Loc Updates * Updated Frontend Build * Fresh Build Co-authored-by: Artur <83028930+netsvetaev@users.noreply.github.com>
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import React, { ChangeEvent } from 'react';
|
|
import { RootState } from 'app/store';
|
|
import { useAppDispatch, useAppSelector } from 'app/storeHooks';
|
|
import IAIInput from 'common/components/IAIInput';
|
|
import { validateSeedWeights } from 'common/util/seedWeightPairs';
|
|
import { setSeedWeights } from 'features/options/store/optionsSlice';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
export default function SeedWeights() {
|
|
const seedWeights = useAppSelector(
|
|
(state: RootState) => state.options.seedWeights
|
|
);
|
|
|
|
const shouldGenerateVariations = useAppSelector(
|
|
(state: RootState) => state.options.shouldGenerateVariations
|
|
);
|
|
|
|
const { t } = useTranslation();
|
|
|
|
const dispatch = useAppDispatch();
|
|
|
|
const handleChangeSeedWeights = (e: ChangeEvent<HTMLInputElement>) =>
|
|
dispatch(setSeedWeights(e.target.value));
|
|
|
|
return (
|
|
<IAIInput
|
|
label={t('options:seedWeights')}
|
|
value={seedWeights}
|
|
isInvalid={
|
|
shouldGenerateVariations &&
|
|
!(validateSeedWeights(seedWeights) || seedWeights === '')
|
|
}
|
|
isDisabled={!shouldGenerateVariations}
|
|
onChange={handleChangeSeedWeights}
|
|
/>
|
|
);
|
|
}
|