AI-231.6890.12.2311.10027519 <debuggerx@debuggerx-e5 Update yiiguxing.translation.xml

master
DebuggerX 2 years ago
parent 94bb9fb795
commit a13a8edf96

@ -4,6 +4,21 @@
</component> </component>
<component name="Translation.States"> <component name="Translation.States">
<histories> <histories>
<item value="NO STATUS RECEIVED" />
<item value="RESERVED_1004" />
<item value="PROTOCOL ERROR" />
<item value="UNSUPPORTED DATA" />
<item value="GOING AWAY" />
<item value="RESERVED_1015" />
<item value="INTERNAL SERVER ERROR" />
<item value="MISSING MANDATORY EXTENSION" />
<item value="MESSAGE TOO BIG" />
<item value="POLICY VIOLATION" />
<item value="INVALID FRAME PAYLOAD DATA" />
<item value="ABNORMAL CLOSURE" />
<item value="NORMAL CLOSURE" />
<item value="static const int NORMAL_CLOSURE = 1000; static const int GOING_AWAY = 1001; static const int PROTOCOL_ERROR = 1002; static const int UNSUPPORTED_DATA = 1003; static const int RESERVED_1004 = 1004; static const int NO_STATUS_RECEIVED = 1005; static const int ABNORMAL_CLOSURE = 1006; static const int INVALID_FRAME_PAYLOAD_DATA = 1007; static const int POLICY_VIOLATION = 1008; static const int MESSAGE_TOO_BIG = 1009; static const int MISSING_MANDATORY_EXTENSION = 1010; static const int INTERNAL_SERVER_ERROR = 1011; static const int RESERVED_1015 = 1015;" />
<item value="Creates a new WebSocket connection. Connects to [uri] using and returns a channel that can be used to communicate over the resulting socket. The optional [protocols] parameter is the same as `WebSocket.connect`." />
<item value="Whether this [Duration] has the same length as [other]. Durations have the same length if they have the same number of microseconds, as reported by [inMicroseconds]." /> <item value="Whether this [Duration] has the same length as [other]. Durations have the same length if they have the same number of microseconds, as reported by [inMicroseconds]." />
<item value="What kind of friends are you looking to meet? You can briefly describe your hobbies or interests for conversation topics, and I can try to find potential friends that you may connect with." /> <item value="What kind of friends are you looking to meet? You can briefly describe your hobbies or interests for conversation topics, and I can try to find potential friends that you may connect with." />
<item value="they" /> <item value="they" />
@ -39,26 +54,11 @@
<item value="Project stucture This template uses the following structure: `src`: Contains the native source code, and a CmakeFile.txt file for building that source code into a dynamic library. `lib`: Contains the Dart code that defines the API of the plugin, and which calls into the native code using `dart:ffi`. platform folders (`android`, `ios`, `windows`, etc.): Contains the build files for building and bundling the native code library with the platform application." /> <item value="Project stucture This template uses the following structure: `src`: Contains the native source code, and a CmakeFile.txt file for building that source code into a dynamic library. `lib`: Contains the Dart code that defines the API of the plugin, and which calls into the native code using `dart:ffi`. platform folders (`android`, `ios`, `windows`, etc.): Contains the build files for building and bundling the native code library with the platform application." />
<item value="{@template flutter.material.checkbox.fillColor} The color that fills the checkbox, in all [MaterialState]s. Resolves in the following states: [MaterialState.selected]. [MaterialState.hovered]. [MaterialState.focused]. [MaterialState.disabled]. {@endtemplate} If null, then the value of [activeColor] is used in the selected state. If that is also null, the value of [CheckboxThemeData.fillColor] is used. If that is also null, then [ThemeData.disabledColor] is used in the disabled state, [ThemeData.toggleableActiveColor] is used in the selected state, and [ThemeData.unselectedWidgetColor] is used in the default state." /> <item value="{@template flutter.material.checkbox.fillColor} The color that fills the checkbox, in all [MaterialState]s. Resolves in the following states: [MaterialState.selected]. [MaterialState.hovered]. [MaterialState.focused]. [MaterialState.disabled]. {@endtemplate} If null, then the value of [activeColor] is used in the selected state. If that is also null, the value of [CheckboxThemeData.fillColor] is used. If that is also null, then [ThemeData.disabledColor] is used in the disabled state, [ThemeData.toggleableActiveColor] is used in the selected state, and [ThemeData.unselectedWidgetColor] is used in the default state." />
<item value="Timeout in milliseconds for opening url. [Dio] will throw the [DioError] with [DioErrorType.connectionTimeout] type when time out." /> <item value="Timeout in milliseconds for opening url. [Dio] will throw the [DioError] with [DioErrorType.connectionTimeout] type when time out." />
<item value="Layout Builder" />
<item value="'LayoutBuilder does not support returning intrinsic dimensions.\n' 'Calculating the intrinsic dimensions would require running the layout ' 'callback speculatively, which might mutate the live render object tree.'," />
<item value="'Calculating the dry layout would require running the layout callback ' 'speculatively, which might mutate the live render object tree.'," />
<item value="Builds a widget tree that can depend on the parent widget's size. Similar to the [Builder] widget except that the framework calls the [builder] function at layout time and provides the parent widget's constraints. This is useful when the parent constrains the child's size and doesn't depend on the child's intrinsic size. The [LayoutBuilder]'s final size will match its child's size. {@macro flutter.widgets.ConstrainedLayoutBuilder} {@youtube 560 315 https:www.youtube.comwatch?v=IYDVcriKjsw} If the child should be smaller than the parent, consider wrapping the child in an [Align] widget. If the child might want to be bigger, consider wrapping it in a [SingleChildScrollView] or [OverflowBox]. {@tool dartpad} This example uses a [LayoutBuilder] to build a different widget depending on the available width. Resize the DartPad window to see [LayoutBuilder] in action! See code in examplesapilibwidgetslayout_builderlayout_builder.0.dart {@end-tool}" />
<item value="The following assertion was thrown during performLayout(): Iflutter ( 4647): RenderFlex children have non-zero flex but incoming height constraints are unbounded. Iflutter ( 4647): When a column is in a parent that does not provide a finite height constraint, for example if it is Iflutter ( 4647): in a vertical scrollable, it will try to shrink-wrap its children along the vertical axis. Setting a Iflutter ( 4647): flex on a child (e.g. using Expanded) indicates that the child is to expand to fill the remaining Iflutter ( 4647): space in the vertical direction. Iflutter ( 4647): These two directives are mutually exclusive. If a parent is to shrink-wrap its child, the child Iflutter ( 4647): cannot simultaneously expand to fit its parent. Iflutter ( 4647): Consider setting mainAxisSize to MainAxisSize.min and using FlexFit.loose fits for the flexible Iflutter ( 4647): children (using Flexible rather than Expanded). This will allow the flexible children to size Iflutter ( 4647): themselves to less than the infinite remaining space they would otherwise be forced to take, and Iflutter ( 4647): then will cause the RenderFlex to shrink-wrap the children rather than expanding to fit the maximum Iflutter ( 4647): constraints provided by the parent." />
<item value="The child is forced to fill the available space. The [Expanded] widget assigns this kind of [FlexFit] to its child." />
<item value="The child can be at most as large as the available space (but is allowed to be smaller). The [Flexible] widget assigns this kind of [FlexFit] to its child." />
<item value="Returns a JSON Web Token (JWT) used to identify the user to a Firebase service. Returns the current token if it has not expired. Otherwise, this will refresh the token and return a new one. If [forceRefresh] is `true`, the token returned will be refresh regardless of token expiration." />
<item value="Deletes and signs out the user. Important: this is a security-sensitive operation that requires the user to have recently signed in. If this requirement isn't met, ask the user to authenticate again and then call [User.reauthenticateWithCredential]. A [FirebaseAuthException] maybe thrown with the following error code: - requires-recent-login: - Thrown if the user's last sign-in time does not meet the security threshold. Use [User.reauthenticateWithCredential] to resolve. This does not apply if the user is anonymous." />
<item value="The current user's tenant ID. This is a read-only property, which indicates the tenant ID used to sign in the current user. This is `null` if the user is signed in from the parent project." />
<item value="Returns a JWT refresh token for the user. This property will be an empty string for native platforms (android, iOS &amp; macOS) as they do not support refresh tokens." />
<item value="Returns additional metadata about the user, such as their creation time." />
<item value="The time when ID token was issued." />
<item value="The authentication time formatted as UTC string. This is the time the user authenticated (signed in) and not the time the token was refreshed." />
<item value="The time when the ID token expires." />
</histories> </histories>
<option name="languageScores"> <option name="languageScores">
<map> <map>
<entry key="CHINESE" value="105" /> <entry key="CHINESE" value="125" />
<entry key="ENGLISH" value="106" /> <entry key="ENGLISH" value="126" />
<entry key="POLISH" value="1" /> <entry key="POLISH" value="1" />
<entry key="ROMANIAN" value="1" /> <entry key="ROMANIAN" value="1" />
</map> </map>

Loading…
Cancel
Save