diff --git a/application/AppScope/app.json b/application/AppScope/app.json index 414cf16ac6ac0987bd3f4583fcb3024f9fca2b0f..5693f5860251ded8ba665428d31252e6ec3f63dd 100644 --- a/application/AppScope/app.json +++ b/application/AppScope/app.json @@ -2,8 +2,8 @@ "app": { "bundleName": "com.ohos.dhardwareui", "vendor": "example", - "versionCode": 10000017, - "versionName": "1.0.17", + "versionCode": 10000018, + "versionName": "1.0.18", "icon": "$media:app_icon", "label": "$string:app_name", "minAPIVersion": 11, diff --git a/application/AppScope/app.json5 b/application/AppScope/app.json5 index ba975b829f0ff89f1492c5d525233deedb7679aa..6a59151848430d417c36ba14ba06f654c93bb15e 100644 --- a/application/AppScope/app.json5 +++ b/application/AppScope/app.json5 @@ -16,8 +16,8 @@ "app": { "bundleName": "com.ohos.dhardwareui", "vendor": "example", - "versionCode": 10000017, - "versionName": "1.0.17", + "versionCode": 10000018, + "versionName": "1.0.18", "icon": "$media:app_icon", "label": "$string:app_name", "minAPIVersion": 11, diff --git a/application/entry/src/main/ets/common/constants/CommonConstants.ets b/application/entry/src/main/ets/common/constants/CommonConstants.ets new file mode 100644 index 0000000000000000000000000000000000000000..a2654763f3351b3c2e41edd7ca16870dcacf5dee --- /dev/null +++ b/application/entry/src/main/ets/common/constants/CommonConstants.ets @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2023 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the 'License'); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an 'AS IS' BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +export default class CommonConstants { + //ContinueSwitch page : + static readonly IMAGE_COUNT:number = 85; + static readonly IMG_ANIMATOR_OVER_DURATION:number = 1000; + static readonly IMG_ANIMATOR_NORMAL_DURATION:number = 30; + static readonly SWITCH_STATUS_OPEN:string = '1'; + static readonly SWITCH_STATUS_CLOSE:string = '0'; + static readonly GENERAL_PHONE_GAP_LENGTH:number = 16; + static readonly PC_PAD_GAP_LENGTH:number = 24; + static readonly PC_LIST_HEIGHT:number = 48; + static readonly PHONE_LIST_HEIGHT:number = 56; + static readonly TEXT_LIST_ALIGN_DISTANCE:number = 12; + static readonly PC_BORDER_RADIUS:number = 16; + static readonly NON_PC_BORDER_RADIUS:number = 20; + static readonly CONTINUE_DESC_TEXT_MARGIN_BOTTOM:number = 32; + static readonly CONTINUE_PRIVACY_TEXT_MARGIN_TOP:number = 8; + static readonly CONTINUE_SWITCH_WIDTH:number = 36; + static readonly CONTINUE_SWITCH_HEIGHT:number = 20; +} \ No newline at end of file diff --git a/application/entry/src/main/ets/pages/ContinueSwitch.ets b/application/entry/src/main/ets/pages/ContinueSwitch.ets index de638863791206123328d7408462cf0db395cf44..9379cd90467e33227e130d16e9bb3700ba31d0d0 100644 --- a/application/entry/src/main/ets/pages/ContinueSwitch.ets +++ b/application/entry/src/main/ets/pages/ContinueSwitch.ets @@ -21,6 +21,8 @@ import { BusinessError } from '@ohos.base'; import { EditableLeftIconType, EditableTitleBar } from '@ohos.arkui.advanced.EditableTitleBar'; import mediaQuery from '@ohos.mediaquery'; import ConfigurationConstant from '@ohos.app.ability.ConfigurationConstant'; +import CommonConstants from '../common/constants/CommonConstants'; +import { logger } from '../utils/Logger'; const TAG = '[ContinueSwitch_Page] : '; let context = getContext(this) as common.UIAbilityContext; @@ -32,8 +34,8 @@ interface switchStatus { } let switchState: switchStatus = { - open: '1', - close: '0' + open: CommonConstants.SWITCH_STATUS_OPEN, + close: CommonConstants.SWITCH_STATUS_CLOSE } @Entry @@ -45,8 +47,8 @@ struct ContinueSwitch { @State screenHeight: number = 0; @State screenWidth: number = 0; @State shortSideSize: number = 0; - @State videoHeight: number = 0; - @State videoWidth: number = 0; + @State imageAnimatorHeight: number = 0; + @State imageAnimatorWidth: number = 0; @State textWidth: number = 0; @State gapLength: number = 0; @State videoSrc: Resource = $rawfile('continue_center.mp4'); @@ -55,13 +57,17 @@ struct ContinueSwitch { @State portraitFunc: mediaQuery.MediaQueryResult | void | null = null; @State isVideoVisible: Visibility = Visibility.Hidden; @State contentHeight: number = 0; + @State imageArray: Array = []; + @State animationState: AnimationStatus = AnimationStatus.Running; + @State reverse: boolean = false; + @State iterations: number = -1; private videoController: VideoController | undefined = undefined; private listener: mediaQuery.MediaQueryListener = mediaQuery.matchMediaSync('(dark-mode:true)'); private extContext?: common.UIExtensionContext; private scroller: Scroller = new Scroller(); onPortrait(mediaQueryResult: mediaQuery.MediaQueryResult) { - console.log(TAG + 'onPortrait in'); + logger.info(TAG + 'onPortrait in'); if (mediaQueryResult.matches as boolean) { this.videoSrc = $rawfile('continue_dark_center.mp4'); this.extContext?.getApplicationContext().setColorMode(ConfigurationConstant.ColorMode.COLOR_MODE_DARK); @@ -71,25 +77,37 @@ struct ContinueSwitch { } } - getVideoSize() { - console.log(TAG + 'getVideoSize in, deviceInfo.deviceType : ' + deviceInfo.deviceType); + /** + * @description Calculate the ImageAnimator size + * Calculation rule: + * 1.general phone & pad : screen height/2 compare with width,shorter is ImageAnimator width + * 2.pc: screen height/2 compare with width,shorter is ImageAnimator height + * 3.ratio: 3:2 + * @param height + * @param width + */ + getImageAnimatorSize(height: Length, width: Length) { + logger.info(TAG + 'getImageAnimatorSize in, deviceInfo.deviceType : ' + deviceInfo.deviceType); + let totalHeight = height as number; + this.shortSideSize = width < totalHeight / 2 ? width as number : totalHeight / 2 as number; if (deviceInfo.deviceType === 'phone' || deviceInfo.deviceType === 'tablet') { - this.videoWidth = this.shortSideSize * 0.8; - this.videoHeight = this.shortSideSize * 0.8 * 2 / 3; + this.imageAnimatorWidth = this.shortSideSize * 0.8; + this.imageAnimatorHeight = this.shortSideSize * 0.8 * 2 / 3; } else if (deviceInfo.deviceType === '2in1') { - this.videoWidth = this.shortSideSize * 0.8 * 3 / 2; - this.videoHeight = this.shortSideSize * 0.8; + this.imageAnimatorWidth = this.shortSideSize * 0.8 * 3 / 2; + this.imageAnimatorHeight = this.shortSideSize * 0.8; } - console.log(TAG + 'this.shortSideSize = ' + this.shortSideSize + ', this.videoWidth = ' + this.videoWidth + ', this.videoHeight = ' + this.videoHeight); + logger.info(TAG + 'this.shortSideSize = ' + this.shortSideSize + ', this.imageAnimatorWidth = ' + + this.imageAnimatorWidth + ', this.imageAnimatorHeight = ' + this.imageAnimatorHeight); } getStringSync() { - console.log(TAG + 'getStringSync in'); + logger.info(TAG + 'getStringSync in'); try { context.resourceManager.getStringValue($r('app.string.continue_title') .id, (error: BusinessError, value: string) => { if (error != null) { - console.error(TAG + 'error is ' + error); + logger.error(TAG + 'error is ' + error); } else { this.title = value; console.info(TAG + ' this.title : ' + this.title); @@ -98,7 +116,18 @@ struct ContinueSwitch { } catch (error) { let code: number = (error as BusinessError).code; let message: string = (error as BusinessError).message; - console.error(TAG + `callback getStringValue failed,error code: ${code},message: ${message}.`); + logger.error(TAG + `callback getStringValue failed,error code: ${code},message: ${message}.`); + } + } + + getImageArray() { + logger.info(TAG + 'getStringSync in'); + for (let i = 0; i <= CommonConstants.IMAGE_COUNT; ++i) { + this.imageArray.push({ + src: $r(`app.media.continue_${i}`), + duration: (i == CommonConstants.IMAGE_COUNT) ? CommonConstants.IMG_ANIMATOR_OVER_DURATION + : CommonConstants.IMG_ANIMATOR_NORMAL_DURATION + }) } } @@ -114,13 +143,13 @@ struct ContinueSwitch { } onPageShow() { - console.log(TAG + 'onPageShow in'); + logger.info(TAG + 'onPageShow in'); this.getGapLength(); display.getAllDisplays((err, data) => { this.screenWidth = px2vp(data[0].width); this.screenHeight = px2vp(data[0].height); this.contentHeight = this.screenHeight; - console.log(TAG + 'screenWidth = ' + this.screenWidth + '; screenHeight = ' + this.screenHeight); + logger.info(TAG + 'screenWidth = ' + this.screenWidth + '; screenHeight = ' + this.screenHeight); }) if (this.videoController) { this.videoController.start(); @@ -129,20 +158,21 @@ struct ContinueSwitch { } aboutToAppear() { - console.log(TAG + 'aboutToAppear in'); + logger.info(TAG + 'aboutToAppear in'); let value = settings.getValueSync(context, 'Continue_Switch_Status', switchState.open); this.isSwitchOn = value != switchState.close ? true : false; - console.log(TAG + ' this.isSwitchOn : ' + this.isSwitchOn + '; value: ' + value); + logger.info(TAG + ' this.isSwitchOn : ' + this.isSwitchOn + '; value: ' + value); AppStorage.setOrCreate('isSwitchOn', this.isSwitchOn); - console.log(TAG + 'AppStorage.get(isSwitchOn) : ' + AppStorage.get('isSwitchOn')); + logger.info(TAG + 'AppStorage.get(isSwitchOn) : ' + AppStorage.get('isSwitchOn')); if (this.isSwitchOn) { let status: boolean = settings.setValueSync(context, 'Continue_Switch_Status', switchState.open); - console.log(TAG + 'set value success :' + status + '; set:Continue_Switch_Status is 1'); + logger.info(TAG + 'set value success :' + status + '; set:Continue_Switch_Status is 1'); } this.getStringSync(); + this.getImageArray(); this.listener.on('change', (mediaQueryResult: mediaQuery.MediaQueryResult) => { this.onPortrait(mediaQueryResult); @@ -151,22 +181,22 @@ struct ContinueSwitch { } getGapLength() { - console.log(TAG + 'getGapLength in, deviceInfo.deviceType : ' + deviceInfo.deviceType); + logger.info(TAG + 'getGapLength in, deviceInfo.deviceType : ' + deviceInfo.deviceType); if (deviceInfo.deviceType == 'phone') { - this.gapLength = 16; + this.gapLength = CommonConstants.GENERAL_PHONE_GAP_LENGTH; } else if (deviceInfo.deviceType == '2in1' || deviceInfo.deviceType == 'tablet') { - this.gapLength = 24; + this.gapLength = CommonConstants.PC_PAD_GAP_LENGTH; } - console.log(TAG + 'this.gapLength : ' + this.gapLength); + logger.info(TAG + 'this.gapLength : ' + this.gapLength); } onBackPress() { - console.log(TAG + 'onBackPress in'); + logger.info(TAG + 'onBackPress in'); } async awaitTime(time: number) { setTimeout(() => { - console.log(TAG, 'awaitTime is' + time); + logger.info(TAG + 'awaitTime is' + time); }, time) } @@ -181,7 +211,7 @@ struct ContinueSwitch { if (this.continueSession) { this.continueSession.sendData({ 'action': 'pop' }) } else { - console.error(TAG + 'continueSession is undefined'); + logger.error(TAG + 'continueSession is undefined'); } } }) @@ -189,38 +219,32 @@ struct ContinueSwitch { Scroll(this.scroller) { Column() { - Video({ src: this.videoSrc, controller: this.videoController }) - .autoPlay(true) - .loop(true) - .objectFit(ImageFit.Contain) - .muted(true) - .controls(false) - .width(this.videoWidth) - .height(this.videoHeight) - .margin({ left: 35, right: 35, bottom: 24 }) - .backgroundColor($r('sys.color.ohos_id_color_sub_background')) - .visibility(this.isVideoVisible) - .onPrepared(async (event) => { - console.info(TAG + 'onPrepared is ' + event.duration); - if (this.videoController) { - this.videoController.start(); - } - }) + ImageAnimator() + .images(this.imageArray) + .state(this.animationState) + .reverse(this.reverse) + .fillMode(this.iterations) + .iterations(this.iterations) + .width(this.imageAnimatorWidth) + .height(this.imageAnimatorHeight) .onStart(() => { - console.info(TAG + 'onStart in'); - this.isVideoVisible = Visibility.Visible; + console.info(TAG + 'ImageAnimator Start'); + }) + .onFinish(() => { + console.info(TAG + 'ImageAnimator Finish'); }) Text($r('app.string.continue_desc')) .fontSize($r('sys.float.ohos_id_text_size_body2')) .fontWeight(FontWeight.Regular) - .margin({ bottom: 32 }) + .margin({ bottom: CommonConstants.CONTINUE_DESC_TEXT_MARGIN_BOTTOM }) .fontColor($r('sys.color.ohos_id_color_text_secondary')) .textAlign(TextAlign.Center) .width('100%') .maxLines(10) .onAreaChange((oldArea: Area, newArea: Area) => { - console.log(TAG + 'Text:continue desc, oldArea.height = ' + oldArea.height + ', newArea.height = ' + newArea.height); + logger.info(TAG + 'Text:continue desc, oldArea.height = ' + oldArea.height + + ', newArea.height = ' + newArea.height); }) Column() { @@ -236,27 +260,30 @@ struct ContinueSwitch { .accessibilityLevel('no') Toggle({ type: ToggleType.Switch, isOn: this.isSwitchOn }) - .width(36) - .height(20) + .width(CommonConstants.CONTINUE_SWITCH_WIDTH) + .height(CommonConstants.CONTINUE_SWITCH_HEIGHT) .hoverEffect(HoverEffect.None) .onChange((isOn: boolean) => { - console.log(TAG + 'isOn:' + isOn); + logger.info(TAG + 'isOn:' + isOn); this.isSwitchOn = isOn; AppStorage.setAndLink('isSwitchOn', isOn); if (isOn) { let status: boolean = settings.setValueSync(context, 'Continue_Switch_Status', switchState.open); - console.log(TAG + 'is set success :' + status + '; set:Continue_Switch_Status is on'); + logger.info(TAG + 'is set success :' + status + '; set:Continue_Switch_Status is on'); } else { let status: boolean = settings.setValueSync(context, 'Continue_Switch_Status', switchState.close); - console.log(TAG + 'is set success :' + status + '; set:Continue_Switch_Status is close'); + logger.info(TAG + 'is set success :' + status + '; set:Continue_Switch_Status is close'); } }) } - .height(this.is2in1 ? 48 : 56) + .height(this.is2in1 ? CommonConstants.PC_LIST_HEIGHT : CommonConstants.PHONE_LIST_HEIGHT) .width('100%') - .padding({ left: 12, right: 12 }) + .padding({ + left: CommonConstants.TEXT_LIST_ALIGN_DISTANCE, + right: CommonConstants.TEXT_LIST_ALIGN_DISTANCE + }) .backgroundColor($r('sys.color.ohos_id_color_list_card_bg')) - .borderRadius(this.is2in1 ? 16 : 20) + .borderRadius(this.is2in1 ? CommonConstants.PC_BORDER_RADIUS : CommonConstants.NON_PC_BORDER_RADIUS) .accessibilityText(this.title) }.width('100%') @@ -265,15 +292,19 @@ struct ContinueSwitch { Text($r('app.string.continue_privacy_text')) .fontSize($r('sys.float.ohos_id_text_size_body3')) .fontWeight(FontWeight.Regular) - .margin({ top: 8 }) + .margin({ top: CommonConstants.CONTINUE_PRIVACY_TEXT_MARGIN_TOP}) .fontColor($r('sys.color.ohos_id_color_text_secondary')) .textAlign(TextAlign.Start) .width('100%') .onAreaChange((oldArea: Area, newArea: Area) => { - console.log(TAG + 'Text:continue_privacy_text, continue desc, oldArea.height = ' + oldArea.height + ', newArea.height = ' + newArea.height); + logger.info(TAG + 'Text:continue_privacy_text, continue desc, oldArea.height = ' + oldArea.height + + ', newArea.height = ' + newArea.height); }) } - .padding({ left: 8, right: 8 }) + .padding({ + left: CommonConstants.TEXT_LIST_ALIGN_DISTANCE, + right: CommonConstants.TEXT_LIST_ALIGN_DISTANCE + }) }.width('100%') } @@ -299,18 +330,17 @@ struct ContinueSwitch { console.info('Scroll Stop'); }) .onAreaChange((oldArea: Area, newArea: Area) => { - console.log(TAG + 'Scroll, oldArea.height = ' + oldArea.height + ', newArea.height = ' + newArea.height); + logger.info(TAG + 'Scroll, oldArea.height = ' + oldArea.height + ', newArea.height = ' + newArea.height); }) } .width('100%') .height('100%') .backgroundColor($r('sys.color.ohos_id_color_sub_background')) .onAreaChange((oldArea: Area, newArea: Area) => { - console.log(TAG + 'build column , oldArea.height = ' + oldArea.height + ', newArea.height = ' + newArea.height); - let fullHeight = newArea.height as number; - this.shortSideSize = newArea.width < fullHeight / 2 ? newArea.width as number : fullHeight / 2 as number; - this.getVideoSize(); - console.log(TAG + 'this.shortSideSize = ' + this.shortSideSize + ', this.videoWidth = ' + this.videoWidth + ', this.videoHeight = ' + this.videoHeight); + logger.info(TAG + 'build column , oldArea.height = ' + oldArea.height + ', newArea.height = ' + newArea.height); + this.getImageAnimatorSize(newArea.height, newArea.width); + logger.info(TAG + 'this.shortSideSize = ' + this.shortSideSize + ', this.imageAnimatorWidth = ' + + this.imageAnimatorWidth + ', this.imageAnimatorHeight = ' + this.imageAnimatorHeight); }) } } \ No newline at end of file diff --git a/application/entry/src/main/ets/utils/Logger.ets b/application/entry/src/main/ets/utils/Logger.ets new file mode 100644 index 0000000000000000000000000000000000000000..906835373dc05a8952829ed5c7a9fd71abbe661e --- /dev/null +++ b/application/entry/src/main/ets/utils/Logger.ets @@ -0,0 +1,44 @@ +/* + * Copyright (c) 2024 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import hilog from '@ohos.hilog'; + +class LoggerModel { + private domain: number; + private prefix: string; + + constructor(prefix: string) { + this.prefix = prefix; + this.domain = 0xFF00; + } + + debug(message: string): void { + hilog.debug(this.domain, this.prefix, message); + } + + info(message: string): void { + hilog.info(this.domain, this.prefix, message); + } + + warn(message: string): void { + hilog.warn(this.domain, this.prefix, message); + } + + error(message: string): void { + hilog.error(this.domain, this.prefix, message); + } +} + +export let logger = new LoggerModel('[DHardware_UI]'); \ No newline at end of file diff --git a/application/entry/src/main/resources/base/element/string.json b/application/entry/src/main/resources/base/element/string.json index 86cc704ff9dc6d89ad6d2c5b33b6bbd260dcae8b..e5c040bf1fdde17b4f99551ef5e54c27460f358a 100644 --- a/application/entry/src/main/resources/base/element/string.json +++ b/application/entry/src/main/resources/base/element/string.json @@ -62,7 +62,7 @@ }, { "name": "continue_privacy_text", - "value":"This service uses Bluetooth and Wi-Fi. During use, it will read this device's name and send it to devices you hop to. By turning this on, you agree to these terms." + "value":"This service uses Bluetooth and WLAN. During use, it will read this device's name and send it to devices you hop to. By turning this on, you agree to these terms." } ] } \ No newline at end of file diff --git a/application/entry/src/main/resources/base/media/continue_1.png b/application/entry/src/main/resources/base/media/continue_1.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_1.png differ diff --git a/application/entry/src/main/resources/base/media/continue_10.png b/application/entry/src/main/resources/base/media/continue_10.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_10.png differ diff --git a/application/entry/src/main/resources/base/media/continue_11.png b/application/entry/src/main/resources/base/media/continue_11.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_11.png differ diff --git a/application/entry/src/main/resources/base/media/continue_12.png b/application/entry/src/main/resources/base/media/continue_12.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_12.png differ diff --git a/application/entry/src/main/resources/base/media/continue_13.png b/application/entry/src/main/resources/base/media/continue_13.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_13.png differ diff --git a/application/entry/src/main/resources/base/media/continue_14.png b/application/entry/src/main/resources/base/media/continue_14.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_14.png differ diff --git a/application/entry/src/main/resources/base/media/continue_15.png b/application/entry/src/main/resources/base/media/continue_15.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_15.png differ diff --git a/application/entry/src/main/resources/base/media/continue_16.png b/application/entry/src/main/resources/base/media/continue_16.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_16.png differ diff --git a/application/entry/src/main/resources/base/media/continue_17.png b/application/entry/src/main/resources/base/media/continue_17.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_17.png differ diff --git a/application/entry/src/main/resources/base/media/continue_18.png b/application/entry/src/main/resources/base/media/continue_18.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_18.png differ diff --git a/application/entry/src/main/resources/base/media/continue_19.png b/application/entry/src/main/resources/base/media/continue_19.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_19.png differ diff --git a/application/entry/src/main/resources/base/media/continue_2.png b/application/entry/src/main/resources/base/media/continue_2.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_2.png differ diff --git a/application/entry/src/main/resources/base/media/continue_20.png b/application/entry/src/main/resources/base/media/continue_20.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_20.png differ diff --git a/application/entry/src/main/resources/base/media/continue_21.png b/application/entry/src/main/resources/base/media/continue_21.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_21.png differ diff --git a/application/entry/src/main/resources/base/media/continue_22.png b/application/entry/src/main/resources/base/media/continue_22.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_22.png differ diff --git a/application/entry/src/main/resources/base/media/continue_23.png b/application/entry/src/main/resources/base/media/continue_23.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_23.png differ diff --git a/application/entry/src/main/resources/base/media/continue_24.png b/application/entry/src/main/resources/base/media/continue_24.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_24.png differ diff --git a/application/entry/src/main/resources/base/media/continue_25.png b/application/entry/src/main/resources/base/media/continue_25.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_25.png differ diff --git a/application/entry/src/main/resources/base/media/continue_26.png b/application/entry/src/main/resources/base/media/continue_26.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_26.png differ diff --git a/application/entry/src/main/resources/base/media/continue_27.png b/application/entry/src/main/resources/base/media/continue_27.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_27.png differ diff --git a/application/entry/src/main/resources/base/media/continue_28.png b/application/entry/src/main/resources/base/media/continue_28.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_28.png differ diff --git a/application/entry/src/main/resources/base/media/continue_29.png b/application/entry/src/main/resources/base/media/continue_29.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_29.png differ diff --git a/application/entry/src/main/resources/base/media/continue_3.png b/application/entry/src/main/resources/base/media/continue_3.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_3.png differ diff --git a/application/entry/src/main/resources/base/media/continue_30.png b/application/entry/src/main/resources/base/media/continue_30.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_30.png differ diff --git a/application/entry/src/main/resources/base/media/continue_31.png b/application/entry/src/main/resources/base/media/continue_31.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_31.png differ diff --git a/application/entry/src/main/resources/base/media/continue_32.png b/application/entry/src/main/resources/base/media/continue_32.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_32.png differ diff --git a/application/entry/src/main/resources/base/media/continue_33.png b/application/entry/src/main/resources/base/media/continue_33.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_33.png differ diff --git a/application/entry/src/main/resources/base/media/continue_34.png b/application/entry/src/main/resources/base/media/continue_34.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_34.png differ diff --git a/application/entry/src/main/resources/base/media/continue_35.png b/application/entry/src/main/resources/base/media/continue_35.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_35.png differ diff --git a/application/entry/src/main/resources/base/media/continue_36.png b/application/entry/src/main/resources/base/media/continue_36.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_36.png differ diff --git a/application/entry/src/main/resources/base/media/continue_37.png b/application/entry/src/main/resources/base/media/continue_37.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_37.png differ diff --git a/application/entry/src/main/resources/base/media/continue_38.png b/application/entry/src/main/resources/base/media/continue_38.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_38.png differ diff --git a/application/entry/src/main/resources/base/media/continue_39.png b/application/entry/src/main/resources/base/media/continue_39.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_39.png differ diff --git a/application/entry/src/main/resources/base/media/continue_4.png b/application/entry/src/main/resources/base/media/continue_4.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_4.png differ diff --git a/application/entry/src/main/resources/base/media/continue_40.png b/application/entry/src/main/resources/base/media/continue_40.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_40.png differ diff --git a/application/entry/src/main/resources/base/media/continue_41.png b/application/entry/src/main/resources/base/media/continue_41.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_41.png differ diff --git a/application/entry/src/main/resources/base/media/continue_42.png b/application/entry/src/main/resources/base/media/continue_42.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_42.png differ diff --git a/application/entry/src/main/resources/base/media/continue_43.png b/application/entry/src/main/resources/base/media/continue_43.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_43.png differ diff --git a/application/entry/src/main/resources/base/media/continue_44.png b/application/entry/src/main/resources/base/media/continue_44.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_44.png differ diff --git a/application/entry/src/main/resources/base/media/continue_45.png b/application/entry/src/main/resources/base/media/continue_45.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_45.png differ diff --git a/application/entry/src/main/resources/base/media/continue_46.png b/application/entry/src/main/resources/base/media/continue_46.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_46.png differ diff --git a/application/entry/src/main/resources/base/media/continue_47.png b/application/entry/src/main/resources/base/media/continue_47.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_47.png differ diff --git a/application/entry/src/main/resources/base/media/continue_48.png b/application/entry/src/main/resources/base/media/continue_48.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_48.png differ diff --git a/application/entry/src/main/resources/base/media/continue_49.png b/application/entry/src/main/resources/base/media/continue_49.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_49.png differ diff --git a/application/entry/src/main/resources/base/media/continue_5.png b/application/entry/src/main/resources/base/media/continue_5.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_5.png differ diff --git a/application/entry/src/main/resources/base/media/continue_50.png b/application/entry/src/main/resources/base/media/continue_50.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_50.png differ diff --git a/application/entry/src/main/resources/base/media/continue_51.png b/application/entry/src/main/resources/base/media/continue_51.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_51.png differ diff --git a/application/entry/src/main/resources/base/media/continue_52.png b/application/entry/src/main/resources/base/media/continue_52.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_52.png differ diff --git a/application/entry/src/main/resources/base/media/continue_53.png b/application/entry/src/main/resources/base/media/continue_53.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_53.png differ diff --git a/application/entry/src/main/resources/base/media/continue_54.png b/application/entry/src/main/resources/base/media/continue_54.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_54.png differ diff --git a/application/entry/src/main/resources/base/media/continue_55.png b/application/entry/src/main/resources/base/media/continue_55.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_55.png differ diff --git a/application/entry/src/main/resources/base/media/continue_56.png b/application/entry/src/main/resources/base/media/continue_56.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_56.png differ diff --git a/application/entry/src/main/resources/base/media/continue_57.png b/application/entry/src/main/resources/base/media/continue_57.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_57.png differ diff --git a/application/entry/src/main/resources/base/media/continue_58.png b/application/entry/src/main/resources/base/media/continue_58.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_58.png differ diff --git a/application/entry/src/main/resources/base/media/continue_59.png b/application/entry/src/main/resources/base/media/continue_59.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_59.png differ diff --git a/application/entry/src/main/resources/base/media/continue_6.png b/application/entry/src/main/resources/base/media/continue_6.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_6.png differ diff --git a/application/entry/src/main/resources/base/media/continue_60.png b/application/entry/src/main/resources/base/media/continue_60.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_60.png differ diff --git a/application/entry/src/main/resources/base/media/continue_61.png b/application/entry/src/main/resources/base/media/continue_61.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_61.png differ diff --git a/application/entry/src/main/resources/base/media/continue_62.png b/application/entry/src/main/resources/base/media/continue_62.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_62.png differ diff --git a/application/entry/src/main/resources/base/media/continue_63.png b/application/entry/src/main/resources/base/media/continue_63.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_63.png differ diff --git a/application/entry/src/main/resources/base/media/continue_64.png b/application/entry/src/main/resources/base/media/continue_64.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_64.png differ diff --git a/application/entry/src/main/resources/base/media/continue_65.png b/application/entry/src/main/resources/base/media/continue_65.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_65.png differ diff --git a/application/entry/src/main/resources/base/media/continue_66.png b/application/entry/src/main/resources/base/media/continue_66.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_66.png differ diff --git a/application/entry/src/main/resources/base/media/continue_67.png b/application/entry/src/main/resources/base/media/continue_67.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_67.png differ diff --git a/application/entry/src/main/resources/base/media/continue_68.png b/application/entry/src/main/resources/base/media/continue_68.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_68.png differ diff --git a/application/entry/src/main/resources/base/media/continue_69.png b/application/entry/src/main/resources/base/media/continue_69.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_69.png differ diff --git a/application/entry/src/main/resources/base/media/continue_7.png b/application/entry/src/main/resources/base/media/continue_7.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_7.png differ diff --git a/application/entry/src/main/resources/base/media/continue_70.png b/application/entry/src/main/resources/base/media/continue_70.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_70.png differ diff --git a/application/entry/src/main/resources/base/media/continue_71.png b/application/entry/src/main/resources/base/media/continue_71.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_71.png differ diff --git a/application/entry/src/main/resources/base/media/continue_72.png b/application/entry/src/main/resources/base/media/continue_72.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_72.png differ diff --git a/application/entry/src/main/resources/base/media/continue_73.png b/application/entry/src/main/resources/base/media/continue_73.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_73.png differ diff --git a/application/entry/src/main/resources/base/media/continue_74.png b/application/entry/src/main/resources/base/media/continue_74.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_74.png differ diff --git a/application/entry/src/main/resources/base/media/continue_75.png b/application/entry/src/main/resources/base/media/continue_75.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_75.png differ diff --git a/application/entry/src/main/resources/base/media/continue_76.png b/application/entry/src/main/resources/base/media/continue_76.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_76.png differ diff --git a/application/entry/src/main/resources/base/media/continue_77.png b/application/entry/src/main/resources/base/media/continue_77.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_77.png differ diff --git a/application/entry/src/main/resources/base/media/continue_78.png b/application/entry/src/main/resources/base/media/continue_78.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_78.png differ diff --git a/application/entry/src/main/resources/base/media/continue_79.png b/application/entry/src/main/resources/base/media/continue_79.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_79.png differ diff --git a/application/entry/src/main/resources/base/media/continue_8.png b/application/entry/src/main/resources/base/media/continue_8.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_8.png differ diff --git a/application/entry/src/main/resources/base/media/continue_80.png b/application/entry/src/main/resources/base/media/continue_80.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_80.png differ diff --git a/application/entry/src/main/resources/base/media/continue_81.png b/application/entry/src/main/resources/base/media/continue_81.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_81.png differ diff --git a/application/entry/src/main/resources/base/media/continue_82.png b/application/entry/src/main/resources/base/media/continue_82.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_82.png differ diff --git a/application/entry/src/main/resources/base/media/continue_83.png b/application/entry/src/main/resources/base/media/continue_83.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_83.png differ diff --git a/application/entry/src/main/resources/base/media/continue_84.png b/application/entry/src/main/resources/base/media/continue_84.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_84.png differ diff --git a/application/entry/src/main/resources/base/media/continue_85.png b/application/entry/src/main/resources/base/media/continue_85.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_85.png differ diff --git a/application/entry/src/main/resources/base/media/continue_9.png b/application/entry/src/main/resources/base/media/continue_9.png new file mode 100644 index 0000000000000000000000000000000000000000..0c68a42e0d7a911a4c2faaae600be35cdff2ac18 Binary files /dev/null and b/application/entry/src/main/resources/base/media/continue_9.png differ diff --git a/application/entry/src/main/resources/bo_CN/element/string.json b/application/entry/src/main/resources/bo_CN/element/string.json index 8cc0f20b8347494bc893494a9b37ff0b9716cdc2..f2f6d377f0babb807a7157789bfdb2d209c141eb 100644 --- a/application/entry/src/main/resources/bo_CN/element/string.json +++ b/application/entry/src/main/resources/bo_CN/element/string.json @@ -38,7 +38,7 @@ }, { "name":"continue_privacy_text", - "value":"ཞབས་ཞུ་འདི་བཀོལ་བའི་བརྒྱུད་རིམ་ཁྲོད་དུ་སོ་སྔོན་དང་ Wi-Fi རྩོལ་ནུས་བཀོལ་དགོས། སྒྲིག་ཆས་ཀྱི་མིང་ཀློག་ལེན་བྱས་ནས་འཕྲོ་མཐུད་བྱ་ཡུལ་གྱི་སྒྲིག་ཆས་ལ་བརྒྱུད་སྐྱེལ་བྱ། བསད་སྤར་ཁ་ཕྱེ་ཚེ། ཁྱེད་ཀྱིས་གོང་གི་ནང་དོན་ལ་མོས་མཐུན་བྱེད་པ་མཚོན།" + "value":"ཞབས་ཞུ་འདི་བཀོལ་བའི་བརྒྱུད་རིམ་ཁྲོད་དུ་སོ་སྔོན་དང་ WLAN རྩོལ་ནུས་བཀོལ་དགོས། སྒྲིག་ཆས་ཀྱི་མིང་ཀློག་ལེན་བྱས་ནས་འཕྲོ་མཐུད་བྱ་ཡུལ་གྱི་སྒྲིག་ཆས་ལ་བརྒྱུད་སྐྱེལ་བྱ། བསད་སྤར་ཁ་ཕྱེ་ཚེ། ཁྱེད་ཀྱིས་གོང་གི་ནང་དོན་ལ་མོས་མཐུན་བྱེད་པ་མཚོན།" } ] } \ No newline at end of file diff --git a/application/entry/src/main/resources/ug/element/string.json b/application/entry/src/main/resources/ug/element/string.json index 36b5b81adc875e0d98589de080bfe9050a98dd74..218d593f6785138487156ccfae53689377ff0c3e 100644 --- a/application/entry/src/main/resources/ug/element/string.json +++ b/application/entry/src/main/resources/ug/element/string.json @@ -38,7 +38,7 @@ }, { "name":"continue_privacy_text", - "value":"بۇ مۇلازىمەت كۆكچىش ۋە Wi-Fi ئىشلىتىدۇ؛ بۇ ئۈسكۈنىنىڭ نامىنى ئوقۇپ، ئۆتكۈزىدىغان ئۈسكۈنىگە يوللايدۇ. بۇ مۇلازىمەتنى ئاچسىڭىز، يۇقىرىقىلارغا قوشۇلغان بولىسىز." + "value":"بۇ مۇلازىمەت كۆكچىش ۋە WLAN ئىشلىتىدۇ؛ بۇ ئۈسكۈنىنىڭ نامىنى ئوقۇپ، ئۆتكۈزىدىغان ئۈسكۈنىگە يوللايدۇ. بۇ مۇلازىمەتنى ئاچسىڭىز، يۇقىرىقىلارغا قوشۇلغان بولىسىز." } ] } \ No newline at end of file diff --git a/application/entry/src/main/resources/zh_CN/element/string.json b/application/entry/src/main/resources/zh_CN/element/string.json index acaf472c784215b6cb6930728ccf544332b49ea7..3ae7bf4d8a739dfe289a7bb8de852a2c247cd1cb 100644 --- a/application/entry/src/main/resources/zh_CN/element/string.json +++ b/application/entry/src/main/resources/zh_CN/element/string.json @@ -62,7 +62,7 @@ }, { "name":"continue_privacy_text", - "value":"本服务使用过程中需要使用蓝牙和 Wi-Fi 功能,读取并传送本设备名称到要接续的设备。打开开关,即表示您同意上述内容。" + "value":"本服务使用过程中需要使用蓝牙和 WLAN 功能,读取并传送本设备名称到要接续的设备。打开开关,即表示您同意上述内容。" } ] } \ No newline at end of file diff --git a/application/entry/src/main/resources/zh_HK/element/string.json b/application/entry/src/main/resources/zh_HK/element/string.json index 48da7e1a41201264ad34708bee20bc3af24e9afd..54e6aa8fcaf7e5006cbbecd88955905dbf1d46a8 100644 --- a/application/entry/src/main/resources/zh_HK/element/string.json +++ b/application/entry/src/main/resources/zh_HK/element/string.json @@ -38,7 +38,7 @@ }, { "name":"continue_privacy_text", - "value":"本服務在使用過程中需要使用藍牙和 Wi-Fi 功能,讀取並傳輸本裝置名稱至要接續的裝置。開啟開關,即表示您同意上述內容。" + "value":"本服務在使用過程中需要使用藍牙和 WLAN 功能,讀取並傳輸本裝置名稱至要接續的裝置。開啟開關,即表示您同意上述內容。" } ] } \ No newline at end of file diff --git a/application/entry/src/main/resources/zh_TW/element/string.json b/application/entry/src/main/resources/zh_TW/element/string.json index 761a0ac3a8aa4b7958d6404d26a5275225791760..87cfd3b22a196526fc302cab546052f38a04ac40 100644 --- a/application/entry/src/main/resources/zh_TW/element/string.json +++ b/application/entry/src/main/resources/zh_TW/element/string.json @@ -38,7 +38,7 @@ }, { "name":"continue_privacy_text", - "value":"本服務使用過程中需要使用藍牙和 Wi-Fi 功能,讀取本裝置名稱並將其傳輸至要接續的裝置。若開啟開關,即表示您同意上述內容。" + "value":"本服務使用過程中需要使用藍牙和 WLAN 功能,讀取本裝置名稱並將其傳輸至要接續的裝置。若開啟開關,即表示您同意上述內容。" } ] } \ No newline at end of file diff --git a/application/entry/src/main/resources/zz_ZX/element/string.json b/application/entry/src/main/resources/zz_ZX/element/string.json index f86ba681ffb2c1818bee9fed9d291fdb037bc20e..020b25f07beadb609f768c637bfd535826ec1aec 100644 --- a/application/entry/src/main/resources/zz_ZX/element/string.json +++ b/application/entry/src/main/resources/zz_ZX/element/string.json @@ -62,7 +62,7 @@ }, { "name":"continue_privacy_text", - "value":"[TS_932988]_This service uses Bluetooth and Wi-Fi. During use, it will read this device's name and send it to devices you hop to. By turning this on, you agree to these terms." + "value":"[TS_932988]_This service uses Bluetooth and WLAN. During use, it will read this device's name and send it to devices you hop to. By turning this on, you agree to these terms." } ] } \ No newline at end of file