izzy: images for ZH

This commit is contained in:
Thibault Deckers 2022-04-14 09:35:24 +09:00
parent f7bea779a3
commit d6eb08e378
14 changed files with 12 additions and 1 deletions

View file

@ -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

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View file

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 362 KiB

View file

@ -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);

View file

@ -73,5 +73,10 @@
"settingsThemeColorHighlights",
"settingsDisplayRefreshRateModeTile",
"settingsDisplayRefreshRateModeTitle"
],
"zh": [
"entryActionConvertMotionPhotoToStillImage",
"convertMotionPhotoToStillImageWarningDialogMessage"
]
}