Files
AndroidStudioSettings/yiiguxing.translation.xml
T

83 lines
8.8 KiB
XML

<application>
<component name="Translation.Cache">
<option name="lastTrimTime" value="1779786383145" />
</component>
<component name="Translation.OpenAISettings">
<option name="OPEN_AI">
<open-ai>
<option name="API_PATH" value="/api/paas/v4/chat/completions" />
<option name="CUSTOM_MODEL" value="GLM-4-Flash" />
<option name="ENDPOINT" value="https://open.bigmodel.cn" />
<option name="USE_CUSTOM_MODEL" value="true" />
</open-ai>
</option>
</component>
<component name="Translation.Settings">
<option name="primaryLanguage" value="CHINESE_SIMPLIFIED" />
<option name="translator" value="OPEN_AI" />
</component>
<component name="Translation.States">
<option name="translationDialogHeight" value="325" />
<option name="translationDialogLocationX" value="2705" />
<option name="translationDialogLocationY" value="567" />
<option name="translationDialogWidth" value="1381" />
<histories>
<item value="Starts playing the video. If the video is at the end, this method starts playing from the beginning. This method returns a future that completes as soon as the &quot;play&quot; command has been sent to the platform, not when playback itself is totally finished." />
<item value="The currently active set of [ui.AccessibilityFeatures]. This is set when the binding is first initialized and updated whenever a flag is changed. To listen to changes to accessibility features, create a [WidgetsBindingObserver] and listen to [WidgetsBindingObserver.didChangeAccessibilityFeatures]." />
<item value="Whether semantics information must be collected. Returns true if either the platform has requested semantics information to be generated or if [ensureSemantics] has been called otherwise. To get notified when this value changes register a listener with [addSemanticsEnabledListener]." />
<item value="No progress update for 1 second while playing, retry current emotion" />
<item value="SIGNATURE" />
<item value="pending" />
<item value="The current playback position." />
<item value="The total duration of the video. The value is only meaningful when [isInitialized] is true." />
<item value="Attempts to open the given [dataSource] and load metadata about the video." />
<item value="unawaited" />
<item value="True if video has finished playing to end. Reverts to false if video position changes, or video begins playing. Does not update if video is looping." />
<item value="Emotion" />
<item value="mask" />
<item value="musk" />
<item value="on configed" />
<item value="chargerplugin" />
<item value="not charging" />
<item value="not charge" />
<item value="current" />
<item value="full charged" />
<item value="robot charging battery level layer" />
<item value="current temp face video path" />
<item value="A list of [FontVariation]s that affect how a variable font is rendered. Some fonts are variable fonts that can generate multiple font faces based on the values of customizable attributes. For example, a variable font may have a weight axis that can be set to a value between 1 and 1000. [FontVariation]s can be used to select the values of these design axes. For example, to control the weight axis of the Roboto Slab variable font (https:fonts.google.comspecimenRoboto+Slab): ```dart const TextStyle( fontFamily: 'RobotoSlab', fontVariations: &lt;FontVariation&gt;[FontVariation('wght', 900.0)] ) ``` Font variations can be interpolated via [lerp]. This is fastest when the same font variation axes are specified, in the same order, in both [TextStyle] objects. See [lerpFontVariations]. See also: [fontFeatures], for font variations that have discrete values." />
<item value="subscribtion" />
<item value="to go" />
<item value="normalize tasks" />
<item value="loose" />
<item value="tight" />
<item value="[TextInputAction.next] and [TextInputAction.previous], which automatically shift the focus to the nextprevious focusable item when the user is done editing." />
<item value="failed" />
<item value="Sorry! The startup failed, restart me please." />
<item value="启动失败了,请重启我再试试吧" />
<item value="Startup failed, please restart me." />
<item value="unnamed" />
<item value="Whether the decoration is the same size as the input field. A collapsed decoration cannot have [labelText], [errorText], [counter], [icon], prefixes, and suffixes. To create a collapsed input decoration, use [InputDecoration.collapsed]." />
<item value="is 4 D joystick" />
<item value="The application is not currently visible to the user, and not responding to user input. When the application is in this state, the engine will not call the [PlatformDispatcher.onBeginFrame] and [PlatformDispatcher.onDrawFrame] callbacks. This state is only entered on iOS and Android." />
<item value="All views of an application are hidden, either because the application is about to be paused (on iOS and Android), or because it has been minimized or placed on a desktop that is no longer visible (on non-web desktop), or is running in a window or tab that is no longer visible (on the web). On iOS and Android, in order to keep the state machine the same on all platforms, a transition to this state is synthesized before the [paused] state is entered when coming from [inactive], and before the [inactive] state is entered when coming from [paused]. This allows cross-platform implementations that want to know when an app is conceptually &quot;hidden&quot; to only write one handler." />
<item value="On Android and iOS, apps in this state should assume that they may be [hidden] and [paused] at any time." />
<item value="On Android, this corresponds to the Flutter host view running in Android's paused state (i.e. [`Activity.onPause`](https:developer.android.comreferenceandroidappActivityonPause()) has been called), or in Android's &quot;resumed&quot; state (i.e. [`Activity.onResume`](https:developer.android.comreferenceandroidappActivityonResume()) has been called) but does not have window focus. Examples of when apps transition to this state include when the app is partially obscured or another activity is focused, a app running in a split screen that isn't the current app, an app interrupted by a phone call, a picture-in-picture app, a system dialog, another view. It will also be inactive when the notification window shade is down, or the application switcher is visible." />
<item value="On iOS and macOS, this state corresponds to the Flutter host view running in the foreground inactive state. Apps transition to this state when in a phone call, when responding to a TouchID request, when entering the app switcher or the control center, or when the UIViewController hosting the Flutter app is transitioning." />
<item value="On non-web desktop platforms, this corresponds to an application that is not in the foreground, but still has visible windows. On the web, this corresponds to an application that is running in a window or tab that does not have input focus." />
<item value="At least one view of the application is visible, but none have input focus. The application is otherwise running normally." />
<item value="Returns whether the wakelock is currently enabled or not. If you want to retrieve the current wakelock status, you will have to call [WakelockPlus.enabled] and await its result: ```dart bool wakelockEnabled = await WakelockPlus.enabled;" />
<item value="Toggles the wakelock on or off. You can simply use this function to toggle the wakelock using a [bool] value (for the [enable] parameter). ```dart This line keeps the screen on. WakelockPlus.toggle(enable: true); bool enableWakelock = false; The following line disables the WakelockPlus. WakelockPlus.toggle(enable: enableWakelock); ``` You can await the [Future] to wait for the operation to complete." />
<item value="keep screen wakeup" />
<item value="A node in the URDF hierarchy tree." />
<item value="If `cacheWidth` or `cacheHeight` are provided, they indicate to the engine that the image must be decoded at the specified size. The image will be rendered to the constraints of the layout or [width] and [height] regardless of these parameters. These parameters are primarily intended to reduce the memory usage of [ImageCache]." />
<item value="This will further optimize our widget by rebuilding it only when &quot;isAdult&quot; changed instead of whenever the age changes." />
<item value="NOTE: The function passed to [select] can return complex computations" />
</histories>
<option name="languageScores">
<map>
<entry key="CHINESE_SIMPLIFIED" value="69" />
<entry key="ENGLISH" value="69" />
</map>
</option>
</component>
</application>