izzy: images for ZH
|
@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Info: action to overlay GeoTIFF on map (limited to some projections)
|
||||
- Info: action to convert motion photo to still image
|
||||
- Italian translation (thanks glemco)
|
||||
- Chinese (Simplified) translation (thanks 小默 & Aerowolf)
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
BIN
fastlane/metadata/android/zh-CN/images/featureGraphic.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
fastlane/metadata/android/zh-CN/images/phoneScreenshots/1.png
Normal file
After Width: | Height: | Size: 272 KiB |
BIN
fastlane/metadata/android/zh-CN/images/phoneScreenshots/2.png
Normal file
After Width: | Height: | Size: 494 KiB |
BIN
fastlane/metadata/android/zh-CN/images/phoneScreenshots/3.png
Normal file
After Width: | Height: | Size: 208 KiB |
BIN
fastlane/metadata/android/zh-CN/images/phoneScreenshots/4.png
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
fastlane/metadata/android/zh-CN/images/phoneScreenshots/5.png
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
fastlane/metadata/android/zh-CN/images/phoneScreenshots/6.png
Normal file
After Width: | Height: | Size: 362 KiB |
|
@ -40,7 +40,12 @@ void main() {
|
|||
unawaited(driver.close());
|
||||
});
|
||||
|
||||
test('scan media dir', () => driver.scanMediaDir(screenshotsTargetDirAndroid));
|
||||
test('scan media dir', () async {
|
||||
await driver.scanMediaDir(screenshotsTargetDirAndroid);
|
||||
// recent heavy images may delay cataloguing because of thumbnail loading precedence
|
||||
// so we wait enough to avoid cataloguing progress subtitle in app bar when taking screenshots
|
||||
await Future.delayed(const Duration(seconds: 20));
|
||||
});
|
||||
|
||||
languageCodes.forEach((languageCode) {
|
||||
setLanguage(languageCode);
|
||||
|
|
|
@ -73,5 +73,10 @@
|
|||
"settingsThemeColorHighlights",
|
||||
"settingsDisplayRefreshRateModeTile",
|
||||
"settingsDisplayRefreshRateModeTitle"
|
||||
],
|
||||
|
||||
"zh": [
|
||||
"entryActionConvertMotionPhotoToStillImage",
|
||||
"convertMotionPhotoToStillImageWarningDialogMessage"
|
||||
]
|
||||
}
|
||||
|
|