AI-Iguana | 2023.2.1 <dx@DESKTOP-UTKHD5F Update yiiguxing.translation.xml

master
dx 1 year ago
parent 3173b2e316
commit e5513fda41

@ -7,6 +7,10 @@
</component> </component>
<component name="Translation.States"> <component name="Translation.States">
<histories> <histories>
<item value="Clip with anti-aliasing and saveLayer immediately following the clip. This mode not only clips with anti-aliasing, but also allocates an offscreen buffer. All subsequent paints are carried out on that buffer before finally being clipped and composited back. This is very slow. It has no bleeding edge artifacts (that [antiAlias] has) but it changes the semantics as an offscreen buffer is now introduced. (See https:github.comflutterflutterissues18057issuecomment-394197336 for a difference between paint without saveLayer and paint with saveLayer.) This will be only rarely needed. One case where you might need this is if you have an image overlaid on a very different background color. In these cases, consider whether you can avoid overlaying multiple colors in one spot (e.g. by having the background color only present where the image is absent). If you can, [antiAlias] would be fine and much faster. See also: [antiAlias], which is much faster, and has similar clipping results." />
<item value="Clip with anti-aliasing. This mode has anti-aliased clipping edges to achieve a smoother look. It' s much faster than [antiAliasWithSaveLayer], but slower than [hardEdge]. This will be the common case when dealing with circles and arcs. Different from [hardEdge] and [antiAliasWithSaveLayer], this clipping may have bleeding edge artifacts. (See https:fiddle.skia.orgc21cb4c2b2515996b537f36e7819288ae for an example.) See also: [hardEdge], which is a little faster, but with lower fidelity. [antiAliasWithSaveLayer], which is much slower, but can avoid the bleeding edges if there's no other way. [Paint.isAntiAlias], which is the anti-aliasing switch for general draw operations." />
<item value="Clip, but do not apply anti-aliasing. This mode enables clipping, but curves and non-axis-aligned straight lines will be jagged as no effort is made to anti-alias. Faster than other clipping modes, but slower than [none]. This is a reasonable choice when clipping is needed, if the container is an axis- aligned rectangle or an axis-aligned rounded rectangle with very small corner radii. See also: [antiAlias], which is more reasonable when clipping is needed and the shape is not an axis-aligned rectangle." />
<item value="No clip at all. This is the default option for most widgets: if the content does not overflow the widget boundary, don't pay any performance cost for clipping. If the content does overflow, please explicitly specify the following [Clip] options: [hardEdge], which is the fastest clipping, but with lower fidelity. [antiAlias], which is a little slower than [hardEdge], but with smoothed edges. [antiAliasWithSaveLayer], which is much slower than [antiAlias], and should rarely be used." />
<item value="Whether this range is empty (but still potentially placed inside the text)." /> <item value="Whether this range is empty (but still potentially placed inside the text)." />
<item value="Whether the start of this range precedes the end." /> <item value="Whether the start of this range precedes the end." />
<item value="Whether this range represents a valid position in the text." /> <item value="Whether this range represents a valid position in the text." />
@ -53,15 +57,11 @@
<item value="实现收货地址编辑功能" /> <item value="实现收货地址编辑功能" />
<item value="&lt;!-- Constrains the text to a single horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focus instead of inserting a newline when you press the enter key. The default value is false (multi-line wrapped text mode) for non-editable text, but if you specify any value for inputType, the default is true (single-line input field mode). {@deprecated This attribute is deprecated. Use &lt;code&gt;maxLines&lt;code&gt; instead to change the layout of a static text, and use the &lt;code&gt;textMultiLine&lt;code&gt; flag in the inputType attribute instead for editable text views (if both singleLine and inputType are supplied, the inputType flags will override the value of singleLine). } --&gt;" /> <item value="&lt;!-- Constrains the text to a single horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focus instead of inserting a newline when you press the enter key. The default value is false (multi-line wrapped text mode) for non-editable text, but if you specify any value for inputType, the default is true (single-line input field mode). {@deprecated This attribute is deprecated. Use &lt;code&gt;maxLines&lt;code&gt; instead to change the layout of a static text, and use the &lt;code&gt;textMultiLine&lt;code&gt; flag in the inputType attribute instead for editable text views (if both singleLine and inputType are supplied, the inputType flags will override the value of singleLine). } --&gt;" />
<item value="design game res model" /> <item value="design game res model" />
<item value="Expands each element of this [Iterable] into zero or more elements. The resulting Iterable runs through the elements returned by [toElements] for each element of this, in iteration order. The returned [Iterable] is lazy, and calls [toElements] for each element of this iterable every time the returned iterable is iterated. Example: ```dart Iterable&lt;int&gt; count(int n) sync { for (var i = 1; i &lt;= n; i++) { yield i; } } var numbers = [1, 3, 0, 2]; print(numbers.expand(count)); (1, 1, 2, 3, 1, 2) ``` Equivalent to: ``` Iterable&lt;T&gt; expand&lt;T&gt;(Iterable&lt;T&gt; toElements(E e)) sync { for (var value in this) { yield toElements(value); } } ```" />
<item value="expand" />
<item value="fold" />
<item value="expend" />
</histories> </histories>
<option name="languageScores"> <option name="languageScores">
<map> <map>
<entry key="CHINESE" value="283" /> <entry key="CHINESE" value="287" />
<entry key="ENGLISH" value="284" /> <entry key="ENGLISH" value="288" />
<entry key="HAWAIIAN" value="1" /> <entry key="HAWAIIAN" value="1" />
<entry key="POLISH" value="1" /> <entry key="POLISH" value="1" />
<entry key="ROMANIAN" value="1" /> <entry key="ROMANIAN" value="1" />

Loading…
Cancel
Save