Files
AndroidStudioSettings/yiiguxing.translation.xml
T

83 lines
9.6 KiB
XML
Raw Normal View History

<application>
<component name="Translation.Cache">
<option name="lastTrimTime" value="1776780651130" />
</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="260" />
<option name="translationDialogLocationX" value="2705" />
<option name="translationDialogLocationY" value="567" />
<option name="translationDialogWidth" value="1381" />
<histories>
<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" />
<item value="This will cause our widget to rebuild only when `age` changes." />
<item value="If we used `ref.watch(``Consumer` as we normally would, this would cause widgets that only use `age` to still rebuild when `name` changes, which is inefficient." />
<item value="In this class, both `name` and `age` may change, but a widget may need only `age`." />
<item value="For example, consider the following `ChangeNotifier`:" />
<item value="The [select] function allows filtering unwanted rebuilds of a Widget by reading only the properties that we care about." />
<item value="Partially listen to a provider." />
<item value="put if absent" />
<item value="This is why the default value is false. Most of the time, when you change the image provider you're not just changing the image, you're removing the old widget and adding a new one and not expecting them to have any relationship. With [gaplessPlayback] on you might accidentally break this expectation and re-use the old widget." />
<item value="Option B ([gaplessPlayback] = true): The widget displays the avatar of the previous person and the name of the newly loaded person." />
<item value="Option A ([gaplessPlayback] = false): The new person's name is coupled with a blank image." />
<item value="We have constructed a 'Person' widget that displays an avatar [Image] of the currently loaded person along with their name. We could request for a new person to be loaded into the widget at any time. Suppose we have a person currently loaded and the widget loads a new person. What happens if the [Image] fails to load?" />
<item value="Having the default value of [gaplessPlayback] be false helps prevent situations where stale or misleading information might be presented. Consider the following case:" />
<item value="Why is the default value of [gaplessPlayback] false?" />
<item value="Whether to continue showing the old image (true), or briefly show nothing (false), when the image provider changes. The default value is false." />
<item value="过时" />
<item value="Unknown field data, data for which there is no metadata for the associated field, will not be included." />
<item value="The [typeRegistry] is be used for encoding `Any` messages. If an `Any` message encoding a type not in [typeRegistry] is encountered, an error is thrown." />
<item value="Extensions and unknown fields are not encoded." />
<item value="Well-known types and their special JSON encoding are supported. If a well-known type cannot be encoded (eg. a `google.protobuf.Timestamp` with negative `nanoseconds`) an error is thrown." />
<item value="The key for each field is be the camel-cased name of the field." />
<item value="Returns an Object representing Proto3 JSON serialization of `this`." />
<item value="A configuration for [AudioSession] describing what type of audio your app intends to play, and how it interacts with other audio apps. You can either create your own configuration or use the following recipes: [AudioSessionConfiguration.music]: Useful for music player apps. [AudioSessionConfiguration.speech]: Useful for podcast and audiobook apps. You can suggest additional recipes via the GitHub issues page." />
<item value="android audio attributes" />
<item value="AV audio session set active options" />
<item value="AV audio session route sharing policy" />
<item value="AV audio session mode" />
<item value="AV audio session category options" />
<item value="AV audio session category" />
<item value="android audio focus gain type" />
<item value="audio session configuration" />
<item value="av audio session set active options" />
<item value="center" />
<item value="This example includes a generic `SpinnerField&lt;T&gt;` class that you can copy into your own project and customize." />
<item value="This example includes a generic `SpinnerFie into your own project and customize." />
<item value="{@macro flutter.widgets.editableText.onTapOutside} {@tool dartpad} This example shows how to use a `TextFieldTapRegion` to wrap a set of &quot;spinner&quot; buttons that increment and decrement a value in the [TextField] without causing the text field to lose keyboard focus." />
<item value="The number of discrete divisions. Typically used with [label] to show the current discrete value. If null, the slider is continuous." />
</histories>
<option name="languageScores">
<map>
<entry key="CHINESE_SIMPLIFIED" value="68" />
<entry key="ENGLISH" value="68" />
</map>
</option>
</component>
</application>