AI-Meerkat Feature Drop | 2024.3.2 Patch 1 <debuggerx@debuggerx-PC Update yiiguxing.translation.xml

master
debuggerx 2 weeks ago
parent 91c11665cc
commit 1fa1f998a8

@ -18,6 +18,11 @@
</component>
<component name="Translation.States">
<histories>
<item value="These physics cause the carousel item to snap to item boundaries." />
<item value="Scroll physics used by a [CarouselView]." />
<item value="Scroll physics that always lets the user scroll." />
<item value="Scroll physics that attempt to keep the scroll position in range when the contents change dimensions suddenly." />
<item value="Scroll physics for environments that prevent the scroll offset from reaching beyond the bounds of the content." />
<item value="Reduces a collection to a single value by iteratively combining each element of the collection with an existing value" />
<item value="Returns a new color with the provided components updated. Each component ([alpha], [red], [green], [blue]) represents a floating-point value; see [Color.from] for details and examples. If [colorSpace] is provided, and is different than the current color space, the component values are updated before transforming them to the provided [ColorSpace]. Example: ```dart import 'dart:ui'; Create a color with 50% opacity. Color makeTransparent(Color color) =&gt; color.withValues(alpha: 0.5);" />
<item value="Returns a new color that matches this color with the alpha channel replaced with `a` (which ranges from 0 to 255). Out of range values will have unexpected effects." />
@ -63,11 +68,6 @@
<item value="The offset at which the selection originates. Might be larger than, smaller than, or equal to extent." />
<item value="!newValue.composing.isValid || newValue.isComposingRangeValid, 'New TextEditingValue newValue has an invalid non-empty composing range ' '{newValue.composing}. It is recommended to use a valid composing range, ' 'even for readonly text fields.'," />
<item value="Updates the current [text] to the given `newText`, and removes existing selection and composing range held by the controller. This setter is typically only used in tests, as it resets the cursor position and the composing state. For production code, consider using the [value] setter to update the [text] value instead, and specify a reasonable selection range within the new [text]. Setting this notifies all the listeners of this [TextEditingController] that they need to update (it calls [notifyListeners]). For this reason, this value should only be set between frames, e.g. in response to user actions, not during the build, layout, or paint phases. This property can be set from a listener added to this [TextEditingController]." />
<item value="Creates a new independent [Stream] for the contents of this file. If [start] is present, the file will be read from byte-offset [start]. Otherwise from the beginning (index 0). If [end] is present, only bytes up to byte-index [end] will be read. Otherwise, until end of file. In order to make sure that system resources are freed, the stream must be read to completion or the subscription on the stream must be cancelled. If [File] is a [named pipe](https:en.wikipedia.orgwikiNamed_pipe) then the returned [Stream] will wait until the write side of the pipe is closed before signaling &quot;done&quot;. If there are no writers attached to the pipe when it is opened, then [Stream.listen] will wait until a writer opens the pipe. An error opening or reading the file will appear as a [FileSystemException] error event on the returned [Stream], after which the [Stream] is closed. For example: ```dart This example will print the &quot;Error reading file&quot; message and the `await for` loop will complete normally, without seeing any data events. final stream = File('does-not-exist') .openRead() .handleError((e) =&gt; print('Error reading file: e')); await for (final data in stream) { print(data); } ```" />
<item value="The ping received callback" />
<item value="pong callback" />
<item value="{@template flutter.widgets.TextField.textInputAction} The type of action button to use for the keyboard. Defaults to [TextInputAction.newline] if [keyboardType] is [TextInputType.multiline] and [TextInputAction.done] otherwise. {@endtemplate}" />
<item value="Optimize for textual information. Requests the default platform keyboard. static const TextInputType text = TextInputType._(0); Optimize for multiline textual information. Requests the default platform keyboard, but accepts newlines when the enter key is pressed. This is the input type used for all multiline text fields. static const TextInputType multiline = TextInputType._(1);" />
</histories>
<option name="languageScores">
<map>

Loading…
Cancel
Save