l10n: zh_hant

This commit is contained in:
Thibault Deckers 2022-12-12 16:32:49 +01:00
parent b9dfca38d9
commit 722f947480
16 changed files with 12 additions and 25 deletions

View file

@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
- Map: edit cluster location - Map: edit cluster location
- Lithuanian translation (thanks Gediminas Murauskas) - Lithuanian translation (thanks Gediminas Murauskas)
- Norsk (Bokmål) translation (thanks Allan Nordhøy) - Norsk (Bokmål) translation (thanks Allan Nordhøy)
- Chinese (Traditional) translation (thanks pemibe)
### Changed ### Changed

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 KiB

View file

@ -36,6 +36,7 @@ class AboutTranslators extends StatelessWidget {
Contributor('Gediminas Murauskas', 'muziejusinfo@gmail.com'), Contributor('Gediminas Murauskas', 'muziejusinfo@gmail.com'),
Contributor('Oğuz Ersen', 'oguz@ersen.moe'), Contributor('Oğuz Ersen', 'oguz@ersen.moe'),
Contributor('Allan Nordhøy', 'epost@anotheragency.no'), Contributor('Allan Nordhøy', 'epost@anotheragency.no'),
Contributor('pemibe', 'pemibe4634@dmonies.com'),
// Contributor('Piotr K', '1337.kelt@gmail.com'), // Contributor('Piotr K', '1337.kelt@gmail.com'),
// Contributor('امیر جهانگرد', 'ijahangard.a@gmail.com'), // Contributor('امیر جهانگرد', 'ijahangard.a@gmail.com'),
// Contributor('SAMIRAH AIL', 'samiratalzahrani@gmail.com'), // Contributor('SAMIRAH AIL', 'samiratalzahrani@gmail.com'),

View file

@ -1,3 +1,4 @@
import 'package:aves/model/device.dart';
import 'package:aves/model/settings/settings.dart'; import 'package:aves/model/settings/settings.dart';
import 'package:aves/theme/durations.dart'; import 'package:aves/theme/durations.dart';
import 'package:aves/widgets/aves_app.dart'; import 'package:aves/widgets/aves_app.dart';
@ -33,7 +34,7 @@ class AvesAppBar extends StatelessWidget {
builder: (context, mqPaddingTop, child) { builder: (context, mqPaddingTop, child) {
return SliverPersistentHeader( return SliverPersistentHeader(
floating: true, floating: true,
pinned: false, pinned: device.isTelevision,
delegate: _SliverAppBarDelegate( delegate: _SliverAppBarDelegate(
height: mqPaddingTop + appBarHeightForContentHeight(contentHeight), height: mqPaddingTop + appBarHeightForContentHeight(contentHeight),
child: SafeArea( child: SafeArea(

View file

@ -44,6 +44,7 @@ class LocaleTile extends StatelessWidget {
static String getLocaleName(Locale locale) { static String getLocaleName(Locale locale) {
// the package `flutter_localized_locales` has the answer for all locales // the package `flutter_localized_locales` has the answer for all locales
// but it comes with 3 MB of assets // but it comes with 3 MB of assets
return SupportedLocales.languagesByLanguageCode[locale.languageCode] ?? locale.toString(); final localeString = locale.toString();
return SupportedLocales.languagesByLanguageCode[localeString] ?? localeString;
} }
} }

View file

@ -20,5 +20,6 @@ class SupportedLocales {
'ru': 'Русский', 'ru': 'Русский',
'tr': 'Türkçe', 'tr': 'Türkçe',
'zh': '简体中文', 'zh': '简体中文',
'zh_Hant': '繁體中文',
}; };
} }

View file

@ -588,13 +588,6 @@
"filePickerUseThisFolder" "filePickerUseThisFolder"
], ],
"de": [
"entryActionShareImageOnly",
"entryActionShareVideoOnly",
"entryInfoActionRemoveLocation",
"keepScreenOnVideoPlayback"
],
"el": [ "el": [
"entryActionShareImageOnly", "entryActionShareImageOnly",
"entryActionShareVideoOnly", "entryActionShareVideoOnly",
@ -606,10 +599,6 @@
"settingsViewerShowRatingTags" "settingsViewerShowRatingTags"
], ],
"es": [
"keepScreenOnVideoPlayback"
],
"fa": [ "fa": [
"appName", "appName",
"welcomeMessage", "welcomeMessage",
@ -1208,10 +1197,6 @@
"filePickerUseThisFolder" "filePickerUseThisFolder"
], ],
"fr": [
"keepScreenOnVideoPlayback"
],
"gl": [ "gl": [
"entryActionShareImageOnly", "entryActionShareImageOnly",
"entryActionShareVideoOnly", "entryActionShareVideoOnly",
@ -1727,10 +1712,6 @@
"settingsWidgetDisplayedItem" "settingsWidgetDisplayedItem"
], ],
"ko": [
"keepScreenOnVideoPlayback"
],
"lt": [ "lt": [
"keepScreenOnVideoPlayback" "keepScreenOnVideoPlayback"
], ],
@ -3091,10 +3072,6 @@
"filePickerUseThisFolder" "filePickerUseThisFolder"
], ],
"tr": [
"keepScreenOnVideoPlayback"
],
"zh": [ "zh": [
"entryActionShareImageOnly", "entryActionShareImageOnly",
"entryActionShareVideoOnly", "entryActionShareVideoOnly",
@ -3104,5 +3081,10 @@
"filterNoAddressLabel", "filterNoAddressLabel",
"keepScreenOnVideoPlayback", "keepScreenOnVideoPlayback",
"settingsViewerShowRatingTags" "settingsViewerShowRatingTags"
],
"zh_Hant": [
"collectionDeselectSectionTooltip",
"settingsAllowInstalledAppAccess"
] ]
} }