mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-02-17 23:09:36 +00:00
部分优化
This commit is contained in:
parent
f9a49f4473
commit
6b1edcb475
11 changed files with 876 additions and 1058 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||||
import 'package:logging/logging.dart';
|
import 'package:logging/logging.dart';
|
||||||
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
||||||
|
|
@ -46,64 +47,34 @@ class LibraryItem extends _$LibraryItem {
|
||||||
// ! this is a mock delay
|
// ! this is a mock delay
|
||||||
// await Future.delayed(const Duration(seconds: 3));
|
// await Future.delayed(const Duration(seconds: 3));
|
||||||
|
|
||||||
final item = await api.items.get(
|
try {
|
||||||
libraryItemId: id,
|
final item = await api.items.get(
|
||||||
parameters: const shelfsdk.GetItemReqParams(
|
libraryItemId: id,
|
||||||
expanded: true,
|
parameters: const shelfsdk.GetItemReqParams(
|
||||||
include: [
|
expanded: true,
|
||||||
shelfsdk.GetItemIncludeOption.progress,
|
include: [
|
||||||
shelfsdk.GetItemIncludeOption.rssFeed,
|
shelfsdk.GetItemIncludeOption.progress,
|
||||||
shelfsdk.GetItemIncludeOption.authors,
|
shelfsdk.GetItemIncludeOption.rssFeed,
|
||||||
shelfsdk.GetItemIncludeOption.downloads,
|
shelfsdk.GetItemIncludeOption.authors,
|
||||||
],
|
shelfsdk.GetItemIncludeOption.downloads,
|
||||||
),
|
],
|
||||||
);
|
),
|
||||||
if (item != null) {
|
|
||||||
// save to cache
|
|
||||||
final newFile = await apiResponseCacheManager.putFile(
|
|
||||||
key,
|
|
||||||
utf8.encode(jsonEncode(item.asExpanded.toJson())),
|
|
||||||
fileExtension: 'json',
|
|
||||||
key: key,
|
|
||||||
);
|
);
|
||||||
_logger.fine('writing to cache: $newFile');
|
if (item != null) {
|
||||||
yield item.asExpanded;
|
// save to cache
|
||||||
|
final newFile = await apiResponseCacheManager.putFile(
|
||||||
|
key,
|
||||||
|
utf8.encode(jsonEncode(item.asExpanded.toJson())),
|
||||||
|
fileExtension: 'json',
|
||||||
|
key: key,
|
||||||
|
);
|
||||||
|
_logger.fine('writing to cache: $newFile');
|
||||||
|
yield item.asExpanded;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
debugPrintStack(stackTrace: StackTrace.current, label: e.toString());
|
||||||
|
appLogger.severe('未查询到数据');
|
||||||
|
appLogger.severe(e.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@riverpod
|
|
||||||
Future<shelfsdk.PlaybackSessionExpanded?> playBackSession(
|
|
||||||
Ref ref,
|
|
||||||
String libraryItemId,
|
|
||||||
) async {
|
|
||||||
final api = ref.watch(authenticatedApiProvider);
|
|
||||||
final playBack = await api.items.play(
|
|
||||||
libraryItemId: libraryItemId,
|
|
||||||
parameters: shelfsdk.PlayItemReqParams(
|
|
||||||
deviceInfo: shelfsdk.DeviceInfoReqParams(
|
|
||||||
clientVersion: appVersion,
|
|
||||||
manufacturer: deviceManufacturer,
|
|
||||||
model: deviceModel,
|
|
||||||
sdkVersion: deviceSdkVersion,
|
|
||||||
clientName: appName,
|
|
||||||
deviceName: deviceName,
|
|
||||||
),
|
|
||||||
forceDirectPlay: false,
|
|
||||||
forceTranscode: false,
|
|
||||||
supportedMimeTypes: [
|
|
||||||
"audio/flac",
|
|
||||||
"audio/mpeg",
|
|
||||||
"audio/mp4",
|
|
||||||
"audio/ogg",
|
|
||||||
"audio/aac",
|
|
||||||
"audio/webm",
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (playBack == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return playBack.asExpanded;
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ part of 'library_item_provider.dart';
|
||||||
// RiverpodGenerator
|
// RiverpodGenerator
|
||||||
// **************************************************************************
|
// **************************************************************************
|
||||||
|
|
||||||
String _$playBackSessionHash() => r'1bc00653e0041e839d8569192b6bc90d96b4ca4f';
|
String _$libraryItemHash() => r'bdb40fe8506f3b8f78cb47c4af827899f79617b7';
|
||||||
|
|
||||||
/// Copied from Dart SDK
|
/// Copied from Dart SDK
|
||||||
class _SystemHash {
|
class _SystemHash {
|
||||||
|
|
@ -29,144 +29,6 @@ class _SystemHash {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// See also [playBackSession].
|
|
||||||
@ProviderFor(playBackSession)
|
|
||||||
const playBackSessionProvider = PlayBackSessionFamily();
|
|
||||||
|
|
||||||
/// See also [playBackSession].
|
|
||||||
class PlayBackSessionFamily
|
|
||||||
extends Family<AsyncValue<shelfsdk.PlaybackSessionExpanded?>> {
|
|
||||||
/// See also [playBackSession].
|
|
||||||
const PlayBackSessionFamily();
|
|
||||||
|
|
||||||
/// See also [playBackSession].
|
|
||||||
PlayBackSessionProvider call(
|
|
||||||
String libraryItemId,
|
|
||||||
) {
|
|
||||||
return PlayBackSessionProvider(
|
|
||||||
libraryItemId,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
PlayBackSessionProvider getProviderOverride(
|
|
||||||
covariant PlayBackSessionProvider provider,
|
|
||||||
) {
|
|
||||||
return call(
|
|
||||||
provider.libraryItemId,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
static const Iterable<ProviderOrFamily>? _dependencies = null;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Iterable<ProviderOrFamily>? get dependencies => _dependencies;
|
|
||||||
|
|
||||||
static const Iterable<ProviderOrFamily>? _allTransitiveDependencies = null;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Iterable<ProviderOrFamily>? get allTransitiveDependencies =>
|
|
||||||
_allTransitiveDependencies;
|
|
||||||
|
|
||||||
@override
|
|
||||||
String? get name => r'playBackSessionProvider';
|
|
||||||
}
|
|
||||||
|
|
||||||
/// See also [playBackSession].
|
|
||||||
class PlayBackSessionProvider
|
|
||||||
extends AutoDisposeFutureProvider<shelfsdk.PlaybackSessionExpanded?> {
|
|
||||||
/// See also [playBackSession].
|
|
||||||
PlayBackSessionProvider(
|
|
||||||
String libraryItemId,
|
|
||||||
) : this._internal(
|
|
||||||
(ref) => playBackSession(
|
|
||||||
ref as PlayBackSessionRef,
|
|
||||||
libraryItemId,
|
|
||||||
),
|
|
||||||
from: playBackSessionProvider,
|
|
||||||
name: r'playBackSessionProvider',
|
|
||||||
debugGetCreateSourceHash:
|
|
||||||
const bool.fromEnvironment('dart.vm.product')
|
|
||||||
? null
|
|
||||||
: _$playBackSessionHash,
|
|
||||||
dependencies: PlayBackSessionFamily._dependencies,
|
|
||||||
allTransitiveDependencies:
|
|
||||||
PlayBackSessionFamily._allTransitiveDependencies,
|
|
||||||
libraryItemId: libraryItemId,
|
|
||||||
);
|
|
||||||
|
|
||||||
PlayBackSessionProvider._internal(
|
|
||||||
super._createNotifier, {
|
|
||||||
required super.name,
|
|
||||||
required super.dependencies,
|
|
||||||
required super.allTransitiveDependencies,
|
|
||||||
required super.debugGetCreateSourceHash,
|
|
||||||
required super.from,
|
|
||||||
required this.libraryItemId,
|
|
||||||
}) : super.internal();
|
|
||||||
|
|
||||||
final String libraryItemId;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Override overrideWith(
|
|
||||||
FutureOr<shelfsdk.PlaybackSessionExpanded?> Function(
|
|
||||||
PlayBackSessionRef provider)
|
|
||||||
create,
|
|
||||||
) {
|
|
||||||
return ProviderOverride(
|
|
||||||
origin: this,
|
|
||||||
override: PlayBackSessionProvider._internal(
|
|
||||||
(ref) => create(ref as PlayBackSessionRef),
|
|
||||||
from: from,
|
|
||||||
name: null,
|
|
||||||
dependencies: null,
|
|
||||||
allTransitiveDependencies: null,
|
|
||||||
debugGetCreateSourceHash: null,
|
|
||||||
libraryItemId: libraryItemId,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
AutoDisposeFutureProviderElement<shelfsdk.PlaybackSessionExpanded?>
|
|
||||||
createElement() {
|
|
||||||
return _PlayBackSessionProviderElement(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
bool operator ==(Object other) {
|
|
||||||
return other is PlayBackSessionProvider &&
|
|
||||||
other.libraryItemId == libraryItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
int get hashCode {
|
|
||||||
var hash = _SystemHash.combine(0, runtimeType.hashCode);
|
|
||||||
hash = _SystemHash.combine(hash, libraryItemId.hashCode);
|
|
||||||
|
|
||||||
return _SystemHash.finish(hash);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated('Will be removed in 3.0. Use Ref instead')
|
|
||||||
// ignore: unused_element
|
|
||||||
mixin PlayBackSessionRef
|
|
||||||
on AutoDisposeFutureProviderRef<shelfsdk.PlaybackSessionExpanded?> {
|
|
||||||
/// The parameter `libraryItemId` of this provider.
|
|
||||||
String get libraryItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
class _PlayBackSessionProviderElement
|
|
||||||
extends AutoDisposeFutureProviderElement<shelfsdk.PlaybackSessionExpanded?>
|
|
||||||
with PlayBackSessionRef {
|
|
||||||
_PlayBackSessionProviderElement(super.provider);
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get libraryItemId => (origin as PlayBackSessionProvider).libraryItemId;
|
|
||||||
}
|
|
||||||
|
|
||||||
String _$libraryItemHash() => r'8032b2d3ca6a8a2a6217cd32f11cd4b35919f49e';
|
|
||||||
|
|
||||||
abstract class _$LibraryItem
|
abstract class _$LibraryItem
|
||||||
extends BuildlessStreamNotifier<shelfsdk.LibraryItemExpanded> {
|
extends BuildlessStreamNotifier<shelfsdk.LibraryItemExpanded> {
|
||||||
late final String id;
|
late final String id;
|
||||||
|
|
|
||||||
|
|
@ -177,6 +177,14 @@ class PlaybackReporter {
|
||||||
deviceInfo: await _getDeviceInfo(),
|
deviceInfo: await _getDeviceInfo(),
|
||||||
forceDirectPlay: false,
|
forceDirectPlay: false,
|
||||||
forceTranscode: false,
|
forceTranscode: false,
|
||||||
|
supportedMimeTypes: [
|
||||||
|
"audio/flac",
|
||||||
|
"audio/mpeg",
|
||||||
|
"audio/mp4",
|
||||||
|
"audio/ogg",
|
||||||
|
"audio/aac",
|
||||||
|
"audio/webm",
|
||||||
|
],
|
||||||
),
|
),
|
||||||
responseErrorHandler: _responseErrorHandler,
|
responseErrorHandler: _responseErrorHandler,
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||||
import 'package:just_audio/just_audio.dart';
|
import 'package:just_audio/just_audio.dart';
|
||||||
import 'package:logging/logging.dart';
|
import 'package:logging/logging.dart';
|
||||||
import 'package:rxdart/rxdart.dart';
|
import 'package:rxdart/rxdart.dart';
|
||||||
import 'package:shelfsdk/audiobookshelf_api.dart';
|
import 'package:shelfsdk/audiobookshelf_api.dart' hide NotificationSettings;
|
||||||
import 'package:vaani/features/player/core/player_status.dart' as core;
|
import 'package:vaani/features/player/core/player_status.dart' as core;
|
||||||
import 'package:vaani/features/player/providers/player_status_provider.dart';
|
import 'package:vaani/features/player/providers/player_status_provider.dart';
|
||||||
import 'package:vaani/features/settings/app_settings_provider.dart';
|
import 'package:vaani/features/settings/app_settings_provider.dart';
|
||||||
|
|
@ -23,18 +23,20 @@ final _logger = Logger('AudiobookPlayer');
|
||||||
|
|
||||||
class AbsAudioHandler extends BaseAudioHandler with QueueHandler, SeekHandler {
|
class AbsAudioHandler extends BaseAudioHandler with QueueHandler, SeekHandler {
|
||||||
final AudioPlayer _player = AudioPlayer();
|
final AudioPlayer _player = AudioPlayer();
|
||||||
// final List<AudioSource> _playlist = [];
|
|
||||||
final Ref ref;
|
final Ref ref;
|
||||||
|
|
||||||
BookExpanded? _book;
|
BookExpanded? _book;
|
||||||
BookExpanded? get book => _book;
|
BookExpanded? get book => _book;
|
||||||
|
|
||||||
|
late NotificationSettings notificationSettings;
|
||||||
|
|
||||||
final _currentChapterObject = BehaviorSubject<BookChapter?>.seeded(null);
|
final _currentChapterObject = BehaviorSubject<BookChapter?>.seeded(null);
|
||||||
AbsAudioHandler(this.ref) {
|
AbsAudioHandler(this.ref) {
|
||||||
_setupAudioPlayer();
|
ref.listen(appSettingsProvider, (a, b) {
|
||||||
}
|
if (a?.notificationSettings != b.notificationSettings) {
|
||||||
|
notificationSettings = b.notificationSettings;
|
||||||
void _setupAudioPlayer() {
|
}
|
||||||
|
});
|
||||||
final statusNotifier = ref.read(playerStatusProvider.notifier);
|
final statusNotifier = ref.read(playerStatusProvider.notifier);
|
||||||
|
|
||||||
// 转发播放状态
|
// 转发播放状态
|
||||||
|
|
@ -49,6 +51,14 @@ class AbsAudioHandler extends BaseAudioHandler with QueueHandler, SeekHandler {
|
||||||
_player.positionStream.distinct().listen((position) {
|
_player.positionStream.distinct().listen((position) {
|
||||||
final chapter = _book?.findChapterAtTime(positionInBook);
|
final chapter = _book?.findChapterAtTime(positionInBook);
|
||||||
if (chapter != currentChapter) {
|
if (chapter != currentChapter) {
|
||||||
|
if (mediaItem.hasValue && chapter != null) {
|
||||||
|
updateMediaItem(
|
||||||
|
mediaItem.value!.copyWith(
|
||||||
|
duration: chapter.duration,
|
||||||
|
displayTitle: chapter.title,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
_currentChapterObject.sink.add(chapter);
|
_currentChapterObject.sink.add(chapter);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
@ -75,6 +85,18 @@ class AbsAudioHandler extends BaseAudioHandler with QueueHandler, SeekHandler {
|
||||||
}
|
}
|
||||||
_book = book;
|
_book = book;
|
||||||
|
|
||||||
|
final trackToPlay = book.findTrackAtTime(initialPosition ?? Duration.zero);
|
||||||
|
final trackToChapter =
|
||||||
|
book.findChapterAtTime(initialPosition ?? Duration.zero);
|
||||||
|
final initialIndex = book.tracks.indexOf(trackToPlay);
|
||||||
|
final initialPositionInTrack = initialPosition != null
|
||||||
|
? initialPosition - trackToPlay.startOffset
|
||||||
|
: null;
|
||||||
|
final title = appSettings.notificationSettings.primaryTitle
|
||||||
|
.formatNotificationTitle(book);
|
||||||
|
final album = appSettings.notificationSettings.secondaryTitle
|
||||||
|
.formatNotificationTitle(book);
|
||||||
|
|
||||||
// 添加所有音轨
|
// 添加所有音轨
|
||||||
List<AudioSource> audioSources = book.tracks
|
List<AudioSource> audioSources = book.tracks
|
||||||
.map(
|
.map(
|
||||||
|
|
@ -84,28 +106,18 @@ class AbsAudioHandler extends BaseAudioHandler with QueueHandler, SeekHandler {
|
||||||
)
|
)
|
||||||
.toList();
|
.toList();
|
||||||
|
|
||||||
final title = appSettings.notificationSettings.primaryTitle
|
final item = MediaItem(
|
||||||
.formatNotificationTitle(book);
|
id: book.libraryItemId,
|
||||||
final album = appSettings.notificationSettings.secondaryTitle
|
title: title,
|
||||||
.formatNotificationTitle(book);
|
album: album,
|
||||||
playMediaItem(
|
displayTitle: title,
|
||||||
MediaItem(
|
displaySubtitle: album,
|
||||||
id: book.libraryItemId,
|
duration: trackToChapter.duration,
|
||||||
title: title,
|
artUri: Uri.parse(
|
||||||
album: album,
|
'$baseUrl/api/items/${book.libraryItemId}/cover?token=$token',
|
||||||
displayTitle: title,
|
|
||||||
displaySubtitle: album,
|
|
||||||
duration: book.duration,
|
|
||||||
artUri: Uri.parse(
|
|
||||||
'$baseUrl/api/items/${book.libraryItemId}/cover?token=$token',
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
final trackToPlay = book.findTrackAtTime(initialPosition ?? Duration.zero);
|
addQueueItem(item);
|
||||||
final initialIndex = book.tracks.indexOf(trackToPlay);
|
|
||||||
final initialPositionInTrack = initialPosition != null
|
|
||||||
? initialPosition - trackToPlay.startOffset
|
|
||||||
: null;
|
|
||||||
await _player
|
await _player
|
||||||
.setAudioSources(
|
.setAudioSources(
|
||||||
audioSources,
|
audioSources,
|
||||||
|
|
@ -311,21 +323,35 @@ class AbsAudioHandler extends BaseAudioHandler with QueueHandler, SeekHandler {
|
||||||
PlaybackState _transformEvent(PlaybackEvent event) {
|
PlaybackState _transformEvent(PlaybackEvent event) {
|
||||||
return PlaybackState(
|
return PlaybackState(
|
||||||
controls: [
|
controls: [
|
||||||
if (kIsWeb || !Platform.isAndroid) MediaControl.skipToPrevious,
|
if ((kIsWeb || !Platform.isAndroid) &&
|
||||||
MediaControl.rewind,
|
notificationSettings.mediaControls
|
||||||
|
.contains(NotificationMediaControl.skipToPreviousChapter))
|
||||||
|
MediaControl.skipToPrevious,
|
||||||
|
if (notificationSettings.mediaControls
|
||||||
|
.contains(NotificationMediaControl.rewind))
|
||||||
|
MediaControl.rewind,
|
||||||
if (_player.playing) MediaControl.pause else MediaControl.play,
|
if (_player.playing) MediaControl.pause else MediaControl.play,
|
||||||
MediaControl.stop,
|
if (notificationSettings.mediaControls
|
||||||
MediaControl.fastForward,
|
.contains(NotificationMediaControl.fastForward))
|
||||||
if (kIsWeb || !Platform.isAndroid) MediaControl.skipToNext,
|
MediaControl.fastForward,
|
||||||
|
if ((kIsWeb || !Platform.isAndroid) &&
|
||||||
|
notificationSettings.mediaControls
|
||||||
|
.contains(NotificationMediaControl.skipToNextChapter))
|
||||||
|
MediaControl.skipToNext,
|
||||||
|
if (notificationSettings.mediaControls
|
||||||
|
.contains(NotificationMediaControl.stop))
|
||||||
|
MediaControl.stop,
|
||||||
],
|
],
|
||||||
systemActions: {
|
systemActions: {
|
||||||
if (kIsWeb || !Platform.isAndroid) MediaAction.skipToPrevious,
|
// if (kIsWeb || !Platform.isAndroid) MediaAction.skipToPrevious,
|
||||||
MediaAction.rewind,
|
// MediaAction.rewind,
|
||||||
MediaAction.seek,
|
MediaAction.seek,
|
||||||
MediaAction.fastForward,
|
MediaAction.seekForward,
|
||||||
MediaAction.stop,
|
MediaAction.seekBackward,
|
||||||
MediaAction.setSpeed,
|
// MediaAction.fastForward,
|
||||||
if (kIsWeb || !Platform.isAndroid) MediaAction.skipToNext,
|
// MediaAction.stop,
|
||||||
|
// MediaAction.setSpeed,
|
||||||
|
// if (kIsWeb || !Platform.isAndroid) MediaAction.skipToNext,
|
||||||
},
|
},
|
||||||
androidCompactActionIndices: const [1, 2, 3],
|
androidCompactActionIndices: const [1, 2, 3],
|
||||||
processingState: const {
|
processingState: const {
|
||||||
|
|
@ -337,8 +363,8 @@ class AbsAudioHandler extends BaseAudioHandler with QueueHandler, SeekHandler {
|
||||||
}[_player.processingState] ??
|
}[_player.processingState] ??
|
||||||
AudioProcessingState.idle,
|
AudioProcessingState.idle,
|
||||||
playing: _player.playing,
|
playing: _player.playing,
|
||||||
updatePosition: _player.position,
|
updatePosition: positionInChapter,
|
||||||
bufferedPosition: event.bufferedPosition,
|
bufferedPosition: _player.bufferedPosition,
|
||||||
speed: _player.speed,
|
speed: _player.speed,
|
||||||
queueIndex: event.currentIndex,
|
queueIndex: event.currentIndex,
|
||||||
captioningEnabled: false,
|
captioningEnabled: false,
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,22 @@
|
||||||
import 'package:audio_service/audio_service.dart';
|
import 'package:audio_service/audio_service.dart';
|
||||||
|
import 'package:audio_session/audio_session.dart';
|
||||||
import 'package:just_audio_media_kit/just_audio_media_kit.dart';
|
import 'package:just_audio_media_kit/just_audio_media_kit.dart';
|
||||||
import 'package:riverpod/riverpod.dart';
|
import 'package:riverpod/riverpod.dart';
|
||||||
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
||||||
import 'package:vaani/features/player/core/audiobook_player.dart';
|
import 'package:vaani/features/player/core/audiobook_player.dart';
|
||||||
import 'package:vaani/shared/utils/helper.dart';
|
|
||||||
|
|
||||||
part 'audiobook_player.g.dart';
|
part 'audiobook_player.g.dart';
|
||||||
|
|
||||||
@Riverpod(keepAlive: true)
|
@Riverpod(keepAlive: true)
|
||||||
Future<AbsAudioHandler> audioHandlerInit(Ref ref) async {
|
Future<AbsAudioHandler> audioHandlerInit(Ref ref) async {
|
||||||
if (Helper.isWindows() || Helper.isLinux()) {
|
// for playing audio on windows, linux
|
||||||
// JustAudioMediaKit.ensureInitialized(windows: false);
|
JustAudioMediaKit.ensureInitialized();
|
||||||
JustAudioMediaKit.ensureInitialized();
|
|
||||||
}
|
|
||||||
|
|
||||||
final audioService = await AudioService.init(
|
// for configuring how this app will interact with other audio apps
|
||||||
|
final session = await AudioSession.instance;
|
||||||
|
await session.configure(const AudioSessionConfiguration.speech());
|
||||||
|
|
||||||
|
final audioService = AudioService.init(
|
||||||
builder: () => AbsAudioHandler(ref),
|
builder: () => AbsAudioHandler(ref),
|
||||||
config: const AudioServiceConfig(
|
config: const AudioServiceConfig(
|
||||||
androidNotificationChannelId: 'dr.blank.vaani.channel.audio',
|
androidNotificationChannelId: 'dr.blank.vaani.channel.audio',
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ part of 'audiobook_player.dart';
|
||||||
// RiverpodGenerator
|
// RiverpodGenerator
|
||||||
// **************************************************************************
|
// **************************************************************************
|
||||||
|
|
||||||
String _$audioHandlerInitHash() => r'6e4662a45c1c6e84aa16436f71ffcfecc3d4bdab';
|
String _$audioHandlerInitHash() => r'13b9d56c8dfde3a40736432ea069c899ef35ae75';
|
||||||
|
|
||||||
/// See also [audioHandlerInit].
|
/// See also [audioHandlerInit].
|
||||||
@ProviderFor(audioHandlerInit)
|
@ProviderFor(audioHandlerInit)
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,12 @@ import 'package:flutter/material.dart';
|
||||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||||
import 'package:vaani/features/downloads/providers/download_manager.dart';
|
import 'package:vaani/features/downloads/providers/download_manager.dart';
|
||||||
import 'package:vaani/features/playback_reporting/providers/playback_reporter_provider.dart';
|
import 'package:vaani/features/playback_reporting/providers/playback_reporter_provider.dart';
|
||||||
import 'package:vaani/features/skip_start_end/providers/skip_start_end_provider.dart';
|
|
||||||
import 'package:vaani/features/shake_detector/shake_detector_provider.dart';
|
import 'package:vaani/features/shake_detector/shake_detector_provider.dart';
|
||||||
|
import 'package:vaani/features/skip_start_end/providers/skip_start_end_provider.dart';
|
||||||
import 'package:vaani/features/sleep_timer/providers/sleep_timer_provider.dart';
|
import 'package:vaani/features/sleep_timer/providers/sleep_timer_provider.dart';
|
||||||
import 'package:vaani/globals.dart';
|
import 'package:vaani/globals.dart';
|
||||||
import 'package:vaani/shared/utils/helper.dart';
|
import 'package:vaani/shared/utils/helper.dart';
|
||||||
|
import 'package:vaani/shared/widgets/tray_manager.dart';
|
||||||
|
|
||||||
class Framework extends ConsumerWidget {
|
class Framework extends ConsumerWidget {
|
||||||
final Widget child;
|
final Widget child;
|
||||||
|
|
@ -26,6 +27,7 @@ class Framework extends ConsumerWidget {
|
||||||
debugPrintStack(stackTrace: StackTrace.current, label: e.toString());
|
debugPrintStack(stackTrace: StackTrace.current, label: e.toString());
|
||||||
appLogger.severe(e.toString());
|
appLogger.severe(e.toString());
|
||||||
}
|
}
|
||||||
|
if (Helper.isDesktop()) return TrayManager(child);
|
||||||
return child;
|
return child;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -38,483 +38,461 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
|
|
||||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||||
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
|
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
|
||||||
"account": MessageLookupByLibrary.simpleMessage("Account"),
|
"account": MessageLookupByLibrary.simpleMessage("Account"),
|
||||||
"accountAddNewServer": MessageLookupByLibrary.simpleMessage(
|
"accountAddNewServer": MessageLookupByLibrary.simpleMessage(
|
||||||
"Add New Server",
|
"Add New Server",
|
||||||
),
|
),
|
||||||
"accountAddUser": MessageLookupByLibrary.simpleMessage("Add User"),
|
"accountAddUser": MessageLookupByLibrary.simpleMessage("Add User"),
|
||||||
"accountAddUserDialog": m0,
|
"accountAddUserDialog": m0,
|
||||||
"accountAddUserSuccessDialog": MessageLookupByLibrary.simpleMessage(
|
"accountAddUserSuccessDialog": MessageLookupByLibrary.simpleMessage(
|
||||||
"User added successfully! Switch?",
|
"User added successfully! Switch?",
|
||||||
),
|
),
|
||||||
"accountAddUserTooltip": MessageLookupByLibrary.simpleMessage(
|
"accountAddUserTooltip": MessageLookupByLibrary.simpleMessage(
|
||||||
"Add new server",
|
"Add new server",
|
||||||
),
|
),
|
||||||
"accountAnonymous": MessageLookupByLibrary.simpleMessage("Anonymous"),
|
"accountAnonymous": MessageLookupByLibrary.simpleMessage("Anonymous"),
|
||||||
"accountDeleteServer": MessageLookupByLibrary.simpleMessage(
|
"accountDeleteServer": MessageLookupByLibrary.simpleMessage(
|
||||||
"Delete Server",
|
"Delete Server",
|
||||||
),
|
),
|
||||||
"accountInvalidURL":
|
"accountInvalidURL": MessageLookupByLibrary.simpleMessage("Invalid URL"),
|
||||||
MessageLookupByLibrary.simpleMessage("Invalid URL"),
|
"accountManage": MessageLookupByLibrary.simpleMessage("Manage Accounts"),
|
||||||
"accountManage":
|
"accountRegisteredServers": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("Manage Accounts"),
|
"Registered Servers",
|
||||||
"accountRegisteredServers": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Registered Servers",
|
"accountRemoveServerAndUsers": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Remove Server and Users",
|
||||||
"accountRemoveServerAndUsers": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Remove Server and Users",
|
"accountRemoveServerAndUsersHead": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"This will remove the server ",
|
||||||
"accountRemoveServerAndUsersHead": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"This will remove the server ",
|
"accountRemoveServerAndUsersTail": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
" and all its users\' login info from this app.",
|
||||||
"accountRemoveServerAndUsersTail": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
" and all its users\' login info from this app.",
|
"accountRemoveUserLogin": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Remove User Login",
|
||||||
"accountRemoveUserLogin": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Remove User Login",
|
"accountRemoveUserLoginHead": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"This will remove login details of the user ",
|
||||||
"accountRemoveUserLoginHead": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"This will remove login details of the user ",
|
"accountRemoveUserLoginTail": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
" from this app.",
|
||||||
"accountRemoveUserLoginTail": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
" from this app.",
|
"accountServerURI": MessageLookupByLibrary.simpleMessage("Server URI"),
|
||||||
),
|
"accountSwitch": MessageLookupByLibrary.simpleMessage("Switch Account"),
|
||||||
"accountServerURI": MessageLookupByLibrary.simpleMessage("Server URI"),
|
"accountUsersCount": m1,
|
||||||
"accountSwitch": MessageLookupByLibrary.simpleMessage("Switch Account"),
|
"appSettings": MessageLookupByLibrary.simpleMessage("App Settings"),
|
||||||
"accountUsersCount": m1,
|
"appearance": MessageLookupByLibrary.simpleMessage("Appearance"),
|
||||||
"appSettings": MessageLookupByLibrary.simpleMessage("App Settings"),
|
"autoSleepTimerSettings": MessageLookupByLibrary.simpleMessage(
|
||||||
"appearance": MessageLookupByLibrary.simpleMessage("Appearance"),
|
"Auto Sleep Timer Settings",
|
||||||
"autoSleepTimerSettings": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Auto Sleep Timer Settings",
|
"autoTurnOnSleepTimer": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Auto Turn On Sleep Timer",
|
||||||
"autoTurnOnSleepTimer": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Auto Turn On Sleep Timer",
|
"autoTurnOnTimer": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Auto Turn On Timer",
|
||||||
"autoTurnOnTimer": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Auto Turn On Timer",
|
"autoTurnOnTimerAlways": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Always Auto Turn On Timer",
|
||||||
"autoTurnOnTimerAlways": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Always Auto Turn On Timer",
|
"autoTurnOnTimerAlwaysDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Always turn on the sleep timer, no matter what",
|
||||||
"autoTurnOnTimerAlwaysDescription":
|
),
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"autoTurnOnTimerDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Always turn on the sleep timer, no matter what",
|
"Automatically turn on the sleep timer based on the time of day",
|
||||||
),
|
),
|
||||||
"autoTurnOnTimerDescription": MessageLookupByLibrary.simpleMessage(
|
"autoTurnOnTimerFrom": MessageLookupByLibrary.simpleMessage("From"),
|
||||||
"Automatically turn on the sleep timer based on the time of day",
|
"autoTurnOnTimerFromDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Turn on the sleep timer at the specified time",
|
||||||
"autoTurnOnTimerFrom": MessageLookupByLibrary.simpleMessage("From"),
|
),
|
||||||
"autoTurnOnTimerFromDescription": MessageLookupByLibrary.simpleMessage(
|
"autoTurnOnTimerUntil": MessageLookupByLibrary.simpleMessage("Until"),
|
||||||
"Turn on the sleep timer at the specified time",
|
"autoTurnOnTimerUntilDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Turn off the sleep timer at the specified time",
|
||||||
"autoTurnOnTimerUntil": MessageLookupByLibrary.simpleMessage("Until"),
|
),
|
||||||
"autoTurnOnTimerUntilDescription": MessageLookupByLibrary.simpleMessage(
|
"automaticallyDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Turn off the sleep timer at the specified time",
|
"Automatically turn on the sleep timer based on the time of day",
|
||||||
),
|
),
|
||||||
"automaticallyDescription": MessageLookupByLibrary.simpleMessage(
|
"backup": MessageLookupByLibrary.simpleMessage("Backup"),
|
||||||
"Automatically turn on the sleep timer based on the time of day",
|
"backupAndRestore": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Backup and Restore",
|
||||||
"backup": MessageLookupByLibrary.simpleMessage("Backup"),
|
),
|
||||||
"backupAndRestore": MessageLookupByLibrary.simpleMessage(
|
"bookAbout": MessageLookupByLibrary.simpleMessage("About the Book"),
|
||||||
"Backup and Restore",
|
"bookAboutDefault": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Sorry, no description found",
|
||||||
"bookAbout": MessageLookupByLibrary.simpleMessage("About the Book"),
|
),
|
||||||
"bookAboutDefault": MessageLookupByLibrary.simpleMessage(
|
"bookAuthors": MessageLookupByLibrary.simpleMessage("Authors"),
|
||||||
"Sorry, no description found",
|
"bookDownloads": MessageLookupByLibrary.simpleMessage("Downloads"),
|
||||||
),
|
"bookGenres": MessageLookupByLibrary.simpleMessage("Genres"),
|
||||||
"bookAuthors": MessageLookupByLibrary.simpleMessage("Authors"),
|
"bookMetadataAbridged": MessageLookupByLibrary.simpleMessage("Abridged"),
|
||||||
"bookDownloads": MessageLookupByLibrary.simpleMessage("Downloads"),
|
"bookMetadataLength": MessageLookupByLibrary.simpleMessage("Length"),
|
||||||
"bookGenres": MessageLookupByLibrary.simpleMessage("Genres"),
|
"bookMetadataPublished": MessageLookupByLibrary.simpleMessage("Published"),
|
||||||
"bookMetadataAbridged":
|
"bookMetadataUnabridged": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("Abridged"),
|
"Unabridged",
|
||||||
"bookMetadataLength": MessageLookupByLibrary.simpleMessage("Length"),
|
),
|
||||||
"bookMetadataPublished":
|
"bookSeries": MessageLookupByLibrary.simpleMessage("Series"),
|
||||||
MessageLookupByLibrary.simpleMessage("Published"),
|
"bookShelveEmpty": MessageLookupByLibrary.simpleMessage("Try again"),
|
||||||
"bookMetadataUnabridged": MessageLookupByLibrary.simpleMessage(
|
"bookShelveEmptyText": MessageLookupByLibrary.simpleMessage(
|
||||||
"Unabridged",
|
"No shelves to display",
|
||||||
),
|
),
|
||||||
"bookSeries": MessageLookupByLibrary.simpleMessage("Series"),
|
"cancel": MessageLookupByLibrary.simpleMessage("Cancel"),
|
||||||
"bookShelveEmpty": MessageLookupByLibrary.simpleMessage("Try again"),
|
"chapterNotFound": MessageLookupByLibrary.simpleMessage("Chapters"),
|
||||||
"bookShelveEmptyText": MessageLookupByLibrary.simpleMessage(
|
"chapterSelect": MessageLookupByLibrary.simpleMessage("Select Chapter"),
|
||||||
"No shelves to display",
|
"chapterSkip": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Skip chapter opening and ending",
|
||||||
"cancel": MessageLookupByLibrary.simpleMessage("Cancel"),
|
),
|
||||||
"chapterNotFound": MessageLookupByLibrary.simpleMessage("Chapters"),
|
"chapterSkipEnd": MessageLookupByLibrary.simpleMessage(
|
||||||
"chapterSelect": MessageLookupByLibrary.simpleMessage("Select Chapter"),
|
"Skip chapter opening for ",
|
||||||
"chapterSkip": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Skip chapter opening and ending",
|
"chapterSkipOpen": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Skip chapter opening for ",
|
||||||
"chapterSkipEnd": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Skip chapter opening for ",
|
"chapters": MessageLookupByLibrary.simpleMessage("Chapters"),
|
||||||
),
|
"copyToClipboard": MessageLookupByLibrary.simpleMessage(
|
||||||
"chapterSkipOpen": MessageLookupByLibrary.simpleMessage(
|
"Copy to Clipboard",
|
||||||
"Skip chapter opening for ",
|
),
|
||||||
),
|
"copyToClipboardDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"chapters": MessageLookupByLibrary.simpleMessage("Chapters"),
|
"Copy the app settings to the clipboard",
|
||||||
"copyToClipboard": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Copy to Clipboard",
|
"copyToClipboardToast": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Settings copied to clipboard",
|
||||||
"copyToClipboardDescription": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Copy the app settings to the clipboard",
|
"delete": MessageLookupByLibrary.simpleMessage("Delete"),
|
||||||
),
|
"deleteDialog": m2,
|
||||||
"copyToClipboardToast": MessageLookupByLibrary.simpleMessage(
|
"deleted": m3,
|
||||||
"Settings copied to clipboard",
|
"explore": MessageLookupByLibrary.simpleMessage("explore"),
|
||||||
),
|
"exploreHint": MessageLookupByLibrary.simpleMessage(
|
||||||
"delete": MessageLookupByLibrary.simpleMessage("Delete"),
|
"Seek and you shall discover...",
|
||||||
"deleteDialog": m2,
|
),
|
||||||
"deleted": m3,
|
"exploreTooltip": MessageLookupByLibrary.simpleMessage(
|
||||||
"explore": MessageLookupByLibrary.simpleMessage("explore"),
|
"Search and Explore",
|
||||||
"exploreHint": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Seek and you shall discover...",
|
"general": MessageLookupByLibrary.simpleMessage("General"),
|
||||||
),
|
"help": MessageLookupByLibrary.simpleMessage("Help"),
|
||||||
"exploreTooltip": MessageLookupByLibrary.simpleMessage(
|
"home": MessageLookupByLibrary.simpleMessage("Home"),
|
||||||
"Search and Explore",
|
"homeBookContinueListening": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Continue Listening",
|
||||||
"general": MessageLookupByLibrary.simpleMessage("General"),
|
),
|
||||||
"help": MessageLookupByLibrary.simpleMessage("Help"),
|
"homeBookContinueListeningDescription":
|
||||||
"home": MessageLookupByLibrary.simpleMessage("Home"),
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"homeBookContinueListening": MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Continue Listening",
|
|
||||||
),
|
|
||||||
"homeBookContinueListeningDescription":
|
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Show play button for books in currently listening shelf",
|
"Show play button for books in currently listening shelf",
|
||||||
),
|
),
|
||||||
"homeBookContinueSeries": MessageLookupByLibrary.simpleMessage(
|
"homeBookContinueSeries": MessageLookupByLibrary.simpleMessage(
|
||||||
"Continue Series",
|
"Continue Series",
|
||||||
),
|
),
|
||||||
"homeBookContinueSeriesDescription":
|
"homeBookContinueSeriesDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"Show play button for books in continue series shelf",
|
||||||
"Show play button for books in continue series shelf",
|
),
|
||||||
),
|
"homeBookDiscover": MessageLookupByLibrary.simpleMessage("Discover"),
|
||||||
"homeBookDiscover": MessageLookupByLibrary.simpleMessage("Discover"),
|
"homeBookListenAgain": MessageLookupByLibrary.simpleMessage("Listen Again"),
|
||||||
"homeBookListenAgain":
|
"homeBookListenAgainDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("Listen Again"),
|
"Show play button for all books in listen again shelf",
|
||||||
"homeBookListenAgainDescription": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Show play button for all books in listen again shelf",
|
"homeBookNewestAuthors": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Newest Authors",
|
||||||
"homeBookNewestAuthors": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Newest Authors",
|
"homeBookRecentlyAdded": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Recently Added",
|
||||||
"homeBookRecentlyAdded": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Recently Added",
|
"homeBookRecommended": MessageLookupByLibrary.simpleMessage("Recommended"),
|
||||||
),
|
"homeContinueListening": MessageLookupByLibrary.simpleMessage(
|
||||||
"homeBookRecommended":
|
"Continue Listening",
|
||||||
MessageLookupByLibrary.simpleMessage("Recommended"),
|
),
|
||||||
"homeContinueListening": MessageLookupByLibrary.simpleMessage(
|
"homeListenAgain": MessageLookupByLibrary.simpleMessage("Listen Again"),
|
||||||
"Continue Listening",
|
"homePageSettings": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Home Page Settings",
|
||||||
"homeListenAgain": MessageLookupByLibrary.simpleMessage("Listen Again"),
|
),
|
||||||
"homePageSettings": MessageLookupByLibrary.simpleMessage(
|
"homePageSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Home Page Settings",
|
"Customize the home page",
|
||||||
),
|
),
|
||||||
"homePageSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
"homePageSettingsOtherShelves": MessageLookupByLibrary.simpleMessage(
|
||||||
"Customize the home page",
|
"Other shelves",
|
||||||
),
|
),
|
||||||
"homePageSettingsOtherShelves": MessageLookupByLibrary.simpleMessage(
|
"homePageSettingsOtherShelvesDescription":
|
||||||
"Other shelves",
|
MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
|
||||||
"homePageSettingsOtherShelvesDescription":
|
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Show play button for all books in all remaining shelves",
|
"Show play button for all books in all remaining shelves",
|
||||||
),
|
),
|
||||||
"homePageSettingsQuickPlay": MessageLookupByLibrary.simpleMessage(
|
"homePageSettingsQuickPlay": MessageLookupByLibrary.simpleMessage(
|
||||||
"Quick Play",
|
"Quick Play",
|
||||||
),
|
),
|
||||||
"homeStartListening": MessageLookupByLibrary.simpleMessage(
|
"homeStartListening": MessageLookupByLibrary.simpleMessage(
|
||||||
"Start Listening",
|
"Start Listening",
|
||||||
),
|
),
|
||||||
"language": MessageLookupByLibrary.simpleMessage("Language"),
|
"language": MessageLookupByLibrary.simpleMessage("Language"),
|
||||||
"languageDescription": MessageLookupByLibrary.simpleMessage(
|
"languageDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Language switch",
|
"Language switch",
|
||||||
),
|
),
|
||||||
"library": MessageLookupByLibrary.simpleMessage("Library"),
|
"library": MessageLookupByLibrary.simpleMessage("Library"),
|
||||||
"libraryChange": MessageLookupByLibrary.simpleMessage("Change Library"),
|
"libraryChange": MessageLookupByLibrary.simpleMessage("Change Library"),
|
||||||
"libraryEmpty": MessageLookupByLibrary.simpleMessage(
|
"libraryEmpty": MessageLookupByLibrary.simpleMessage(
|
||||||
"No libraries available.",
|
"No libraries available.",
|
||||||
),
|
),
|
||||||
"libraryLoadError": m4,
|
"libraryLoadError": m4,
|
||||||
"librarySelect": MessageLookupByLibrary.simpleMessage("Select Library"),
|
"librarySelect": MessageLookupByLibrary.simpleMessage("Select Library"),
|
||||||
"librarySwitchTooltip": MessageLookupByLibrary.simpleMessage(
|
"librarySwitchTooltip": MessageLookupByLibrary.simpleMessage(
|
||||||
"Switch Library",
|
"Switch Library",
|
||||||
),
|
),
|
||||||
"libraryTooltip": MessageLookupByLibrary.simpleMessage(
|
"libraryTooltip": MessageLookupByLibrary.simpleMessage(
|
||||||
"Browse your library",
|
"Browse your library",
|
||||||
),
|
),
|
||||||
"loading": MessageLookupByLibrary.simpleMessage("Loading..."),
|
"loading": MessageLookupByLibrary.simpleMessage("Loading..."),
|
||||||
"loginLocal": MessageLookupByLibrary.simpleMessage("Local"),
|
"loginLocal": MessageLookupByLibrary.simpleMessage("Local"),
|
||||||
"loginLogin": MessageLookupByLibrary.simpleMessage("Login"),
|
"loginLogin": MessageLookupByLibrary.simpleMessage("Login"),
|
||||||
"loginOpenID": MessageLookupByLibrary.simpleMessage("OpenID"),
|
"loginOpenID": MessageLookupByLibrary.simpleMessage("OpenID"),
|
||||||
"loginPassword": MessageLookupByLibrary.simpleMessage("Password"),
|
"loginPassword": MessageLookupByLibrary.simpleMessage("Password"),
|
||||||
"loginServerClick": MessageLookupByLibrary.simpleMessage("Click here"),
|
"loginServerClick": MessageLookupByLibrary.simpleMessage("Click here"),
|
||||||
"loginServerConnected": MessageLookupByLibrary.simpleMessage(
|
"loginServerConnected": MessageLookupByLibrary.simpleMessage(
|
||||||
"Server connected, please login",
|
"Server connected, please login",
|
||||||
),
|
),
|
||||||
"loginServerNo": MessageLookupByLibrary.simpleMessage(
|
"loginServerNo": MessageLookupByLibrary.simpleMessage(
|
||||||
"Do not have a server? ",
|
"Do not have a server? ",
|
||||||
),
|
),
|
||||||
"loginServerNoConnected": MessageLookupByLibrary.simpleMessage(
|
"loginServerNoConnected": MessageLookupByLibrary.simpleMessage(
|
||||||
"Please enter the URL of your AudiobookShelf Server",
|
"Please enter the URL of your AudiobookShelf Server",
|
||||||
),
|
),
|
||||||
"loginServerNot": m5,
|
"loginServerNot": m5,
|
||||||
"loginServerTo": MessageLookupByLibrary.simpleMessage(
|
"loginServerTo": MessageLookupByLibrary.simpleMessage(
|
||||||
" to know how to setup a server.",
|
" to know how to setup a server.",
|
||||||
),
|
),
|
||||||
"loginTitle": m6,
|
"loginTitle": m6,
|
||||||
"loginToken": MessageLookupByLibrary.simpleMessage("Token"),
|
"loginToken": MessageLookupByLibrary.simpleMessage("Token"),
|
||||||
"loginUsername": MessageLookupByLibrary.simpleMessage("Username"),
|
"loginUsername": MessageLookupByLibrary.simpleMessage("Username"),
|
||||||
"logs": MessageLookupByLibrary.simpleMessage("Logs"),
|
"logs": MessageLookupByLibrary.simpleMessage("Logs"),
|
||||||
"nmpSettingsBackward": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsBackward": MessageLookupByLibrary.simpleMessage(
|
||||||
"Backward Interval",
|
"Backward Interval",
|
||||||
),
|
),
|
||||||
"nmpSettingsForward": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsForward": MessageLookupByLibrary.simpleMessage(
|
||||||
"Forward Interval",
|
"Forward Interval",
|
||||||
),
|
),
|
||||||
"nmpSettingsMediaControls": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsMediaControls": MessageLookupByLibrary.simpleMessage(
|
||||||
"Media Controls",
|
"Media Controls",
|
||||||
),
|
),
|
||||||
"nmpSettingsMediaControlsDescription":
|
"nmpSettingsMediaControlsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"Select the media controls to display",
|
||||||
"Select the media controls to display",
|
),
|
||||||
),
|
"nmpSettingsSelectOne": MessageLookupByLibrary.simpleMessage(
|
||||||
"nmpSettingsSelectOne": MessageLookupByLibrary.simpleMessage(
|
"Select a field below to insert it",
|
||||||
"Select a field below to insert it",
|
),
|
||||||
),
|
"nmpSettingsShowChapterProgress": MessageLookupByLibrary.simpleMessage(
|
||||||
"nmpSettingsShowChapterProgress": MessageLookupByLibrary.simpleMessage(
|
"Show Chapter Progress",
|
||||||
"Show Chapter Progress",
|
),
|
||||||
),
|
"nmpSettingsShowChapterProgressDescription":
|
||||||
"nmpSettingsShowChapterProgressDescription":
|
MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Instead of the overall progress of the book",
|
"Instead of the overall progress of the book",
|
||||||
),
|
),
|
||||||
"nmpSettingsSubTitle": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsSubTitle": MessageLookupByLibrary.simpleMessage(
|
||||||
"Secondary Title",
|
"Secondary Title",
|
||||||
),
|
),
|
||||||
"nmpSettingsSubTitleDescription": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsSubTitleDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"The subtitle of the notification\n",
|
"The subtitle of the notification\n",
|
||||||
),
|
),
|
||||||
"nmpSettingsTitle":
|
"nmpSettingsTitle": MessageLookupByLibrary.simpleMessage("Primary Title"),
|
||||||
MessageLookupByLibrary.simpleMessage("Primary Title"),
|
"nmpSettingsTitleDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"nmpSettingsTitleDescription": MessageLookupByLibrary.simpleMessage(
|
"The title of the notification\n",
|
||||||
"The title of the notification\n",
|
),
|
||||||
),
|
"no": MessageLookupByLibrary.simpleMessage("No"),
|
||||||
"no": MessageLookupByLibrary.simpleMessage("No"),
|
"notImplemented": MessageLookupByLibrary.simpleMessage("Not implemented"),
|
||||||
"notImplemented":
|
"notificationMediaPlayer": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("Not implemented"),
|
"Notification Media Player",
|
||||||
"notificationMediaPlayer": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Notification Media Player",
|
"notificationMediaPlayerDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Customize the media player in notifications",
|
||||||
"notificationMediaPlayerDescription":
|
),
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"ok": MessageLookupByLibrary.simpleMessage("OK"),
|
||||||
"Customize the media player in notifications",
|
"pause": MessageLookupByLibrary.simpleMessage("Pause"),
|
||||||
),
|
"play": MessageLookupByLibrary.simpleMessage("Play"),
|
||||||
"ok": MessageLookupByLibrary.simpleMessage("OK"),
|
"playerSettings": MessageLookupByLibrary.simpleMessage("Player Settings"),
|
||||||
"pause": MessageLookupByLibrary.simpleMessage("Pause"),
|
"playerSettingsCompleteTime": MessageLookupByLibrary.simpleMessage(
|
||||||
"play": MessageLookupByLibrary.simpleMessage("Play"),
|
"Mark Complete When Time Left",
|
||||||
"playerSettings":
|
),
|
||||||
MessageLookupByLibrary.simpleMessage("Player Settings"),
|
"playerSettingsCompleteTimeDescriptionHead":
|
||||||
"playerSettingsCompleteTime": MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage("Mark complete when less than "),
|
||||||
"Mark Complete When Time Left",
|
"playerSettingsCompleteTimeDescriptionTail":
|
||||||
),
|
MessageLookupByLibrary.simpleMessage(" left in the book"),
|
||||||
"playerSettingsCompleteTimeDescriptionHead":
|
"playerSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"Customize the player settings",
|
||||||
"Mark complete when less than "),
|
),
|
||||||
"playerSettingsCompleteTimeDescriptionTail":
|
"playerSettingsDisplay": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(" left in the book"),
|
"Display Settings",
|
||||||
"playerSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Customize the player settings",
|
"playerSettingsDisplayChapterProgress":
|
||||||
),
|
MessageLookupByLibrary.simpleMessage("Show Chapter Progress"),
|
||||||
"playerSettingsDisplay": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsDisplayChapterProgressDescription":
|
||||||
"Display Settings",
|
MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
|
||||||
"playerSettingsDisplayChapterProgress":
|
|
||||||
MessageLookupByLibrary.simpleMessage("Show Chapter Progress"),
|
|
||||||
"playerSettingsDisplayChapterProgressDescription":
|
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Show the progress of the current chapter in the player",
|
"Show the progress of the current chapter in the player",
|
||||||
),
|
),
|
||||||
"playerSettingsDisplayTotalProgress":
|
"playerSettingsDisplayTotalProgress": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"Show Total Progress",
|
||||||
"Show Total Progress",
|
),
|
||||||
),
|
"playerSettingsDisplayTotalProgressDescription":
|
||||||
"playerSettingsDisplayTotalProgressDescription":
|
MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Show the total progress of the book in the player",
|
"Show the total progress of the book in the player",
|
||||||
),
|
),
|
||||||
"playerSettingsPlaybackInterval": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsPlaybackInterval": MessageLookupByLibrary.simpleMessage(
|
||||||
"Playback Report Interval",
|
"Playback Report Interval",
|
||||||
),
|
),
|
||||||
"playerSettingsPlaybackIntervalDescriptionHead":
|
"playerSettingsPlaybackIntervalDescriptionHead":
|
||||||
MessageLookupByLibrary.simpleMessage("Report progress every "),
|
MessageLookupByLibrary.simpleMessage("Report progress every "),
|
||||||
"playerSettingsPlaybackIntervalDescriptionTail":
|
"playerSettingsPlaybackIntervalDescriptionTail":
|
||||||
MessageLookupByLibrary.simpleMessage(" to the server"),
|
MessageLookupByLibrary.simpleMessage(" to the server"),
|
||||||
"playerSettingsPlaybackReporting": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsPlaybackReporting": MessageLookupByLibrary.simpleMessage(
|
||||||
"Playback Reporting",
|
"Playback Reporting",
|
||||||
),
|
),
|
||||||
"playerSettingsPlaybackReportingIgnore":
|
"playerSettingsPlaybackReportingIgnore":
|
||||||
MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Ignore Playback Position Less Than",
|
"Ignore Playback Position Less Than",
|
||||||
),
|
),
|
||||||
"playerSettingsPlaybackReportingMinimum":
|
"playerSettingsPlaybackReportingMinimum":
|
||||||
MessageLookupByLibrary.simpleMessage("Minimum Position to Report"),
|
MessageLookupByLibrary.simpleMessage("Minimum Position to Report"),
|
||||||
"playerSettingsPlaybackReportingMinimumDescriptionHead":
|
"playerSettingsPlaybackReportingMinimumDescriptionHead":
|
||||||
MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Do not report playback for the first ",
|
"Do not report playback for the first ",
|
||||||
),
|
),
|
||||||
"playerSettingsPlaybackReportingMinimumDescriptionTail":
|
"playerSettingsPlaybackReportingMinimumDescriptionTail":
|
||||||
MessageLookupByLibrary.simpleMessage("of the book"),
|
MessageLookupByLibrary.simpleMessage("of the book"),
|
||||||
"playerSettingsRememberForEveryBook":
|
"playerSettingsRememberForEveryBook": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"Remember Player Settings for Every Book",
|
||||||
"Remember Player Settings for Every Book",
|
),
|
||||||
),
|
"playerSettingsRememberForEveryBookDescription":
|
||||||
"playerSettingsRememberForEveryBookDescription":
|
MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Settings like speed, loudness, etc. will be remembered for every book",
|
"Settings like speed, loudness, etc. will be remembered for every book",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeed": MessageLookupByLibrary.simpleMessage("Speed"),
|
"playerSettingsSpeed": MessageLookupByLibrary.simpleMessage("Speed"),
|
||||||
"playerSettingsSpeedDefault": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedDefault": MessageLookupByLibrary.simpleMessage(
|
||||||
"Default Speed",
|
"Default Speed",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptions": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedOptions": MessageLookupByLibrary.simpleMessage(
|
||||||
"Speed Options",
|
"Speed Options",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptionsSelect":
|
"playerSettingsSpeedOptionsSelect": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"Select Speed Options",
|
||||||
"Select Speed Options",
|
),
|
||||||
),
|
"playerSettingsSpeedOptionsSelectAdd": MessageLookupByLibrary.simpleMessage(
|
||||||
"playerSettingsSpeedOptionsSelectAdd":
|
"Add Speed Option",
|
||||||
MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Add Speed Option",
|
"playerSettingsSpeedOptionsSelectAddHelper":
|
||||||
),
|
MessageLookupByLibrary.simpleMessage("Enter a new speed option to add"),
|
||||||
"playerSettingsSpeedOptionsSelectAddHelper":
|
"playerSettingsSpeedSelect": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"Select Speed",
|
||||||
"Enter a new speed option to add"),
|
),
|
||||||
"playerSettingsSpeedSelect": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedSelectHelper": MessageLookupByLibrary.simpleMessage(
|
||||||
"Select Speed",
|
"Enter the speed you want to set when playing for the first time",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedSelectHelper": MessageLookupByLibrary.simpleMessage(
|
"playlistsMine": MessageLookupByLibrary.simpleMessage("My Playlists"),
|
||||||
"Enter the speed you want to set when playing for the first time",
|
"readLess": MessageLookupByLibrary.simpleMessage("Read Less"),
|
||||||
),
|
"readMore": MessageLookupByLibrary.simpleMessage("Read More"),
|
||||||
"playlistsMine": MessageLookupByLibrary.simpleMessage("My Playlists"),
|
"refresh": MessageLookupByLibrary.simpleMessage("Refresh"),
|
||||||
"readLess": MessageLookupByLibrary.simpleMessage("Read Less"),
|
"reset": MessageLookupByLibrary.simpleMessage("Reset"),
|
||||||
"readMore": MessageLookupByLibrary.simpleMessage("Read More"),
|
"resetAppSettings": MessageLookupByLibrary.simpleMessage(
|
||||||
"refresh": MessageLookupByLibrary.simpleMessage("Refresh"),
|
"Reset App Settings",
|
||||||
"reset": MessageLookupByLibrary.simpleMessage("Reset"),
|
),
|
||||||
"resetAppSettings": MessageLookupByLibrary.simpleMessage(
|
"resetAppSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Reset App Settings",
|
"Reset the app settings to the default values",
|
||||||
),
|
),
|
||||||
"resetAppSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
"resetAppSettingsDialog": MessageLookupByLibrary.simpleMessage(
|
||||||
"Reset the app settings to the default values",
|
"Are you sure you want to reset the app settings?",
|
||||||
),
|
),
|
||||||
"resetAppSettingsDialog": MessageLookupByLibrary.simpleMessage(
|
"restore": MessageLookupByLibrary.simpleMessage("Restore"),
|
||||||
"Are you sure you want to reset the app settings?",
|
"restoreBackup": MessageLookupByLibrary.simpleMessage("Restore Backup"),
|
||||||
),
|
"restoreBackupHint": MessageLookupByLibrary.simpleMessage(
|
||||||
"restore": MessageLookupByLibrary.simpleMessage("Restore"),
|
"Paste the backup here",
|
||||||
"restoreBackup": MessageLookupByLibrary.simpleMessage("Restore Backup"),
|
),
|
||||||
"restoreBackupHint": MessageLookupByLibrary.simpleMessage(
|
"restoreBackupInvalid": MessageLookupByLibrary.simpleMessage(
|
||||||
"Paste the backup here",
|
"Invalid backup",
|
||||||
),
|
),
|
||||||
"restoreBackupInvalid": MessageLookupByLibrary.simpleMessage(
|
"restoreBackupSuccess": MessageLookupByLibrary.simpleMessage(
|
||||||
"Invalid backup",
|
"Settings restored",
|
||||||
),
|
),
|
||||||
"restoreBackupSuccess": MessageLookupByLibrary.simpleMessage(
|
"restoreBackupValidator": MessageLookupByLibrary.simpleMessage(
|
||||||
"Settings restored",
|
"Please paste the backup here",
|
||||||
),
|
),
|
||||||
"restoreBackupValidator": MessageLookupByLibrary.simpleMessage(
|
"restoreDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Please paste the backup here",
|
"Restore the app settings from the backup",
|
||||||
),
|
),
|
||||||
"restoreDescription": MessageLookupByLibrary.simpleMessage(
|
"resume": MessageLookupByLibrary.simpleMessage("Resume"),
|
||||||
"Restore the app settings from the backup",
|
"retry": MessageLookupByLibrary.simpleMessage("Retry"),
|
||||||
),
|
"settings": MessageLookupByLibrary.simpleMessage("Settings"),
|
||||||
"resume": MessageLookupByLibrary.simpleMessage("Resume"),
|
"shakeAction": MessageLookupByLibrary.simpleMessage("Shake Action"),
|
||||||
"retry": MessageLookupByLibrary.simpleMessage("Retry"),
|
"shakeActionDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"settings": MessageLookupByLibrary.simpleMessage("Settings"),
|
"The action to perform when a shake is detected",
|
||||||
"shakeAction": MessageLookupByLibrary.simpleMessage("Shake Action"),
|
),
|
||||||
"shakeActionDescription": MessageLookupByLibrary.simpleMessage(
|
"shakeActivationThreshold": MessageLookupByLibrary.simpleMessage(
|
||||||
"The action to perform when a shake is detected",
|
"Shake Activation Threshold",
|
||||||
),
|
),
|
||||||
"shakeActivationThreshold": MessageLookupByLibrary.simpleMessage(
|
"shakeActivationThresholdDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Shake Activation Threshold",
|
"The higher the threshold, the harder you need to shake",
|
||||||
),
|
),
|
||||||
"shakeActivationThresholdDescription":
|
"shakeDetector": MessageLookupByLibrary.simpleMessage("Shake Detector"),
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"shakeDetectorDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"The higher the threshold, the harder you need to shake",
|
"Customize the shake detector settings",
|
||||||
),
|
),
|
||||||
"shakeDetector": MessageLookupByLibrary.simpleMessage("Shake Detector"),
|
"shakeDetectorEnable": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeDetectorDescription": MessageLookupByLibrary.simpleMessage(
|
"Enable Shake Detection",
|
||||||
"Customize the shake detector settings",
|
),
|
||||||
),
|
"shakeDetectorEnableDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeDetectorEnable": MessageLookupByLibrary.simpleMessage(
|
"Enable shake detection to do various actions",
|
||||||
"Enable Shake Detection",
|
),
|
||||||
),
|
"shakeDetectorSettings": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeDetectorEnableDescription": MessageLookupByLibrary.simpleMessage(
|
"Shake Detector Settings",
|
||||||
"Enable shake detection to do various actions",
|
),
|
||||||
),
|
"shakeFeedback": MessageLookupByLibrary.simpleMessage("Shake Feedback"),
|
||||||
"shakeDetectorSettings": MessageLookupByLibrary.simpleMessage(
|
"shakeFeedbackDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Shake Detector Settings",
|
"The feedback to give when a shake is detected",
|
||||||
),
|
),
|
||||||
"shakeFeedback": MessageLookupByLibrary.simpleMessage("Shake Feedback"),
|
"shakeSelectAction": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeFeedbackDescription": MessageLookupByLibrary.simpleMessage(
|
"Select Shake Action",
|
||||||
"The feedback to give when a shake is detected",
|
),
|
||||||
),
|
"shakeSelectActivationThreshold": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeSelectAction": MessageLookupByLibrary.simpleMessage(
|
"Select Shake Activation Threshold",
|
||||||
"Select Shake Action",
|
),
|
||||||
),
|
"shakeSelectActivationThresholdHelper":
|
||||||
"shakeSelectActivationThreshold": MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Select Shake Activation Threshold",
|
|
||||||
),
|
|
||||||
"shakeSelectActivationThresholdHelper":
|
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Enter a number to set the threshold in m/s²",
|
"Enter a number to set the threshold in m/s²",
|
||||||
),
|
),
|
||||||
"shakeSelectFeedback": MessageLookupByLibrary.simpleMessage(
|
"shakeSelectFeedback": MessageLookupByLibrary.simpleMessage(
|
||||||
"Select Shake Feedback",
|
"Select Shake Feedback",
|
||||||
),
|
),
|
||||||
"themeMode": MessageLookupByLibrary.simpleMessage("Theme Mode"),
|
"themeMode": MessageLookupByLibrary.simpleMessage("Theme Mode"),
|
||||||
"themeModeDark": MessageLookupByLibrary.simpleMessage("Dark"),
|
"themeModeDark": MessageLookupByLibrary.simpleMessage("Dark"),
|
||||||
"themeModeHighContrast": MessageLookupByLibrary.simpleMessage(
|
"themeModeHighContrast": MessageLookupByLibrary.simpleMessage(
|
||||||
"High Contrast Mode",
|
"High Contrast Mode",
|
||||||
),
|
),
|
||||||
"themeModeHighContrastDescription":
|
"themeModeHighContrastDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"Increase the contrast between the background and the text",
|
||||||
"Increase the contrast between the background and the text",
|
),
|
||||||
),
|
"themeModeLight": MessageLookupByLibrary.simpleMessage("Light"),
|
||||||
"themeModeLight": MessageLookupByLibrary.simpleMessage("Light"),
|
"themeModeSystem": MessageLookupByLibrary.simpleMessage("System"),
|
||||||
"themeModeSystem": MessageLookupByLibrary.simpleMessage("System"),
|
"themeSettings": MessageLookupByLibrary.simpleMessage("Theme Settings"),
|
||||||
"themeSettings": MessageLookupByLibrary.simpleMessage("Theme Settings"),
|
"themeSettingsColors": MessageLookupByLibrary.simpleMessage(
|
||||||
"themeSettingsColors": MessageLookupByLibrary.simpleMessage(
|
"Material Theme from System",
|
||||||
"Material Theme from System",
|
),
|
||||||
),
|
"themeSettingsColorsAndroid": MessageLookupByLibrary.simpleMessage(
|
||||||
"themeSettingsColorsAndroid": MessageLookupByLibrary.simpleMessage(
|
"Use Material You",
|
||||||
"Use Material You",
|
),
|
||||||
),
|
"themeSettingsColorsBook": MessageLookupByLibrary.simpleMessage(
|
||||||
"themeSettingsColorsBook": MessageLookupByLibrary.simpleMessage(
|
"Adaptive Theme on Item Page",
|
||||||
"Adaptive Theme on Item Page",
|
),
|
||||||
),
|
"themeSettingsColorsBookDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"themeSettingsColorsBookDescription":
|
"Get fancy with the colors on the item page at the cost of some performance",
|
||||||
MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Get fancy with the colors on the item page at the cost of some performance",
|
"themeSettingsColorsCurrent": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"Adapt theme from currently playing item",
|
||||||
"themeSettingsColorsCurrent": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"Adapt theme from currently playing item",
|
"themeSettingsColorsCurrentDescription":
|
||||||
),
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"themeSettingsColorsCurrentDescription":
|
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"Use the theme colors from the currently playing item for the app",
|
"Use the theme colors from the currently playing item for the app",
|
||||||
),
|
),
|
||||||
"themeSettingsColorsDescription": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColorsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Use the system theme colors for the app",
|
"Use the system theme colors for the app",
|
||||||
),
|
),
|
||||||
"themeSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Customize the app theme",
|
"Customize the app theme",
|
||||||
),
|
),
|
||||||
"timeSecond": m7,
|
"timeSecond": m7,
|
||||||
"unknown": MessageLookupByLibrary.simpleMessage("Unknown"),
|
"unknown": MessageLookupByLibrary.simpleMessage("Unknown"),
|
||||||
"webVersion": MessageLookupByLibrary.simpleMessage("Web Version"),
|
"webVersion": MessageLookupByLibrary.simpleMessage("Web Version"),
|
||||||
"yes": MessageLookupByLibrary.simpleMessage("Yes"),
|
"yes": MessageLookupByLibrary.simpleMessage("Yes"),
|
||||||
"you": MessageLookupByLibrary.simpleMessage("You"),
|
"you": MessageLookupByLibrary.simpleMessage("You"),
|
||||||
"youTooltip": MessageLookupByLibrary.simpleMessage(
|
"youTooltip": MessageLookupByLibrary.simpleMessage(
|
||||||
"Your Profile and Settings",
|
"Your Profile and Settings",
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -38,354 +38,325 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
|
|
||||||
final messages = _notInlinedMessages(_notInlinedMessages);
|
final messages = _notInlinedMessages(_notInlinedMessages);
|
||||||
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
|
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
|
||||||
"account": MessageLookupByLibrary.simpleMessage("账户"),
|
"account": MessageLookupByLibrary.simpleMessage("账户"),
|
||||||
"accountAddNewServer": MessageLookupByLibrary.simpleMessage("添加新服务器"),
|
"accountAddNewServer": MessageLookupByLibrary.simpleMessage("添加新服务器"),
|
||||||
"accountAddUser": MessageLookupByLibrary.simpleMessage("添加用户"),
|
"accountAddUser": MessageLookupByLibrary.simpleMessage("添加用户"),
|
||||||
"accountAddUserDialog": m0,
|
"accountAddUserDialog": m0,
|
||||||
"accountAddUserSuccessDialog": MessageLookupByLibrary.simpleMessage(
|
"accountAddUserSuccessDialog": MessageLookupByLibrary.simpleMessage(
|
||||||
"用户添加成功!切换?",
|
"用户添加成功!切换?",
|
||||||
),
|
),
|
||||||
"accountAddUserTooltip": MessageLookupByLibrary.simpleMessage("添加新服务器"),
|
"accountAddUserTooltip": MessageLookupByLibrary.simpleMessage("添加新服务器"),
|
||||||
"accountAnonymous": MessageLookupByLibrary.simpleMessage("匿名"),
|
"accountAnonymous": MessageLookupByLibrary.simpleMessage("匿名"),
|
||||||
"accountDeleteServer": MessageLookupByLibrary.simpleMessage("删除服务器"),
|
"accountDeleteServer": MessageLookupByLibrary.simpleMessage("删除服务器"),
|
||||||
"accountInvalidURL": MessageLookupByLibrary.simpleMessage("无效网址"),
|
"accountInvalidURL": MessageLookupByLibrary.simpleMessage("无效网址"),
|
||||||
"accountManage": MessageLookupByLibrary.simpleMessage("帐户管理"),
|
"accountManage": MessageLookupByLibrary.simpleMessage("帐户管理"),
|
||||||
"accountRegisteredServers":
|
"accountRegisteredServers": MessageLookupByLibrary.simpleMessage("已注册服务器"),
|
||||||
MessageLookupByLibrary.simpleMessage("已注册服务器"),
|
"accountRemoveServerAndUsers": MessageLookupByLibrary.simpleMessage(
|
||||||
"accountRemoveServerAndUsers": MessageLookupByLibrary.simpleMessage(
|
"删除服务器和用户",
|
||||||
"删除服务器和用户",
|
),
|
||||||
),
|
"accountRemoveServerAndUsersHead": MessageLookupByLibrary.simpleMessage(
|
||||||
"accountRemoveServerAndUsersHead": MessageLookupByLibrary.simpleMessage(
|
"这将删除服务器 ",
|
||||||
"这将删除服务器 ",
|
),
|
||||||
),
|
"accountRemoveServerAndUsersTail": MessageLookupByLibrary.simpleMessage(
|
||||||
"accountRemoveServerAndUsersTail": MessageLookupByLibrary.simpleMessage(
|
" 以及该应用程序中所有用户的登录信息。",
|
||||||
" 以及该应用程序中所有用户的登录信息。",
|
),
|
||||||
),
|
"accountRemoveUserLogin": MessageLookupByLibrary.simpleMessage("删除用户登录"),
|
||||||
"accountRemoveUserLogin":
|
"accountRemoveUserLoginHead": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("删除用户登录"),
|
"这将删除用户 ",
|
||||||
"accountRemoveUserLoginHead": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"这将删除用户 ",
|
"accountRemoveUserLoginTail": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
" 的登录详细信息。",
|
||||||
"accountRemoveUserLoginTail": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
" 的登录详细信息。",
|
"accountServerURI": MessageLookupByLibrary.simpleMessage("服务器地址"),
|
||||||
),
|
"accountSwitch": MessageLookupByLibrary.simpleMessage("切换账户"),
|
||||||
"accountServerURI": MessageLookupByLibrary.simpleMessage("服务器地址"),
|
"accountUsersCount": m1,
|
||||||
"accountSwitch": MessageLookupByLibrary.simpleMessage("切换账户"),
|
"appSettings": MessageLookupByLibrary.simpleMessage("应用设置"),
|
||||||
"accountUsersCount": m1,
|
"appearance": MessageLookupByLibrary.simpleMessage("外观"),
|
||||||
"appSettings": MessageLookupByLibrary.simpleMessage("应用设置"),
|
"autoSleepTimerSettings": MessageLookupByLibrary.simpleMessage("自动睡眠定时器设置"),
|
||||||
"appearance": MessageLookupByLibrary.simpleMessage("外观"),
|
"autoTurnOnSleepTimer": MessageLookupByLibrary.simpleMessage("自动开启睡眠定时器"),
|
||||||
"autoSleepTimerSettings":
|
"autoTurnOnTimer": MessageLookupByLibrary.simpleMessage("自动开启定时器"),
|
||||||
MessageLookupByLibrary.simpleMessage("自动睡眠定时器设置"),
|
"autoTurnOnTimerAlways": MessageLookupByLibrary.simpleMessage("始终自动开启定时器"),
|
||||||
"autoTurnOnSleepTimer":
|
"autoTurnOnTimerAlwaysDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("自动开启睡眠定时器"),
|
"总是打开睡眠定时器",
|
||||||
"autoTurnOnTimer": MessageLookupByLibrary.simpleMessage("自动开启定时器"),
|
),
|
||||||
"autoTurnOnTimerAlways":
|
"autoTurnOnTimerDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("始终自动开启定时器"),
|
"根据一天中的时间自动打开睡眠定时器",
|
||||||
"autoTurnOnTimerAlwaysDescription":
|
),
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"autoTurnOnTimerFrom": MessageLookupByLibrary.simpleMessage("从"),
|
||||||
"总是打开睡眠定时器",
|
"autoTurnOnTimerFromDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"在指定时间打开睡眠定时器",
|
||||||
"autoTurnOnTimerDescription": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"根据一天中的时间自动打开睡眠定时器",
|
"autoTurnOnTimerUntil": MessageLookupByLibrary.simpleMessage("直到"),
|
||||||
),
|
"autoTurnOnTimerUntilDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"autoTurnOnTimerFrom": MessageLookupByLibrary.simpleMessage("从"),
|
"在指定时间关闭睡眠定时器",
|
||||||
"autoTurnOnTimerFromDescription": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"在指定时间打开睡眠定时器",
|
"automaticallyDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"根据一天中的时间自动打开睡眠定时器",
|
||||||
"autoTurnOnTimerUntil": MessageLookupByLibrary.simpleMessage("直到"),
|
),
|
||||||
"autoTurnOnTimerUntilDescription": MessageLookupByLibrary.simpleMessage(
|
"backup": MessageLookupByLibrary.simpleMessage("备份"),
|
||||||
"在指定时间关闭睡眠定时器",
|
"backupAndRestore": MessageLookupByLibrary.simpleMessage("备份与恢复"),
|
||||||
),
|
"bookAbout": MessageLookupByLibrary.simpleMessage("关于本书"),
|
||||||
"automaticallyDescription": MessageLookupByLibrary.simpleMessage(
|
"bookAboutDefault": MessageLookupByLibrary.simpleMessage("抱歉,找不到描述"),
|
||||||
"根据一天中的时间自动打开睡眠定时器",
|
"bookAuthors": MessageLookupByLibrary.simpleMessage("作者"),
|
||||||
),
|
"bookDownloads": MessageLookupByLibrary.simpleMessage("下载"),
|
||||||
"backup": MessageLookupByLibrary.simpleMessage("备份"),
|
"bookGenres": MessageLookupByLibrary.simpleMessage("风格"),
|
||||||
"backupAndRestore": MessageLookupByLibrary.simpleMessage("备份与恢复"),
|
"bookMetadataAbridged": MessageLookupByLibrary.simpleMessage("删节版"),
|
||||||
"bookAbout": MessageLookupByLibrary.simpleMessage("关于本书"),
|
"bookMetadataLength": MessageLookupByLibrary.simpleMessage("持续时间"),
|
||||||
"bookAboutDefault": MessageLookupByLibrary.simpleMessage("抱歉,找不到描述"),
|
"bookMetadataPublished": MessageLookupByLibrary.simpleMessage("发布年份"),
|
||||||
"bookAuthors": MessageLookupByLibrary.simpleMessage("作者"),
|
"bookMetadataUnabridged": MessageLookupByLibrary.simpleMessage("未删节版"),
|
||||||
"bookDownloads": MessageLookupByLibrary.simpleMessage("下载"),
|
"bookSeries": MessageLookupByLibrary.simpleMessage("系列"),
|
||||||
"bookGenres": MessageLookupByLibrary.simpleMessage("风格"),
|
"bookShelveEmpty": MessageLookupByLibrary.simpleMessage("重试"),
|
||||||
"bookMetadataAbridged": MessageLookupByLibrary.simpleMessage("删节版"),
|
"bookShelveEmptyText": MessageLookupByLibrary.simpleMessage("未查询到书架"),
|
||||||
"bookMetadataLength": MessageLookupByLibrary.simpleMessage("持续时间"),
|
"cancel": MessageLookupByLibrary.simpleMessage("取消"),
|
||||||
"bookMetadataPublished": MessageLookupByLibrary.simpleMessage("发布年份"),
|
"chapterNotFound": MessageLookupByLibrary.simpleMessage("未找到章节"),
|
||||||
"bookMetadataUnabridged": MessageLookupByLibrary.simpleMessage("未删节版"),
|
"chapterSelect": MessageLookupByLibrary.simpleMessage("选择章节"),
|
||||||
"bookSeries": MessageLookupByLibrary.simpleMessage("系列"),
|
"chapterSkip": MessageLookupByLibrary.simpleMessage("跳过章节片头片尾"),
|
||||||
"bookShelveEmpty": MessageLookupByLibrary.simpleMessage("重试"),
|
"chapterSkipEnd": MessageLookupByLibrary.simpleMessage("跳过章节片尾 "),
|
||||||
"bookShelveEmptyText": MessageLookupByLibrary.simpleMessage("未查询到书架"),
|
"chapterSkipOpen": MessageLookupByLibrary.simpleMessage("跳过章节片头 "),
|
||||||
"cancel": MessageLookupByLibrary.simpleMessage("取消"),
|
"chapters": MessageLookupByLibrary.simpleMessage("章节列表"),
|
||||||
"chapterNotFound": MessageLookupByLibrary.simpleMessage("未找到章节"),
|
"copyToClipboard": MessageLookupByLibrary.simpleMessage("复制到剪贴板"),
|
||||||
"chapterSelect": MessageLookupByLibrary.simpleMessage("选择章节"),
|
"copyToClipboardDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"chapterSkip": MessageLookupByLibrary.simpleMessage("跳过章节片头片尾"),
|
"将应用程序设置复制到剪贴板",
|
||||||
"chapterSkipEnd": MessageLookupByLibrary.simpleMessage("跳过章节片尾 "),
|
),
|
||||||
"chapterSkipOpen": MessageLookupByLibrary.simpleMessage("跳过章节片头 "),
|
"copyToClipboardToast": MessageLookupByLibrary.simpleMessage("设置已复制到剪贴板"),
|
||||||
"chapters": MessageLookupByLibrary.simpleMessage("章节列表"),
|
"delete": MessageLookupByLibrary.simpleMessage("删除"),
|
||||||
"copyToClipboard": MessageLookupByLibrary.simpleMessage("复制到剪贴板"),
|
"deleteDialog": m2,
|
||||||
"copyToClipboardDescription": MessageLookupByLibrary.simpleMessage(
|
"deleted": m3,
|
||||||
"将应用程序设置复制到剪贴板",
|
"explore": MessageLookupByLibrary.simpleMessage("探索"),
|
||||||
),
|
"exploreHint": MessageLookupByLibrary.simpleMessage("搜索与探索..."),
|
||||||
"copyToClipboardToast":
|
"exploreTooltip": MessageLookupByLibrary.simpleMessage("搜索和探索"),
|
||||||
MessageLookupByLibrary.simpleMessage("设置已复制到剪贴板"),
|
"general": MessageLookupByLibrary.simpleMessage("通用"),
|
||||||
"delete": MessageLookupByLibrary.simpleMessage("删除"),
|
"help": MessageLookupByLibrary.simpleMessage("Help"),
|
||||||
"deleteDialog": m2,
|
"home": MessageLookupByLibrary.simpleMessage("首页"),
|
||||||
"deleted": m3,
|
"homeBookContinueListening": MessageLookupByLibrary.simpleMessage("继续收听"),
|
||||||
"explore": MessageLookupByLibrary.simpleMessage("探索"),
|
"homeBookContinueListeningDescription":
|
||||||
"exploreHint": MessageLookupByLibrary.simpleMessage("搜索与探索..."),
|
MessageLookupByLibrary.simpleMessage("继续收听书架上显示播放按钮"),
|
||||||
"exploreTooltip": MessageLookupByLibrary.simpleMessage("搜索和探索"),
|
"homeBookContinueSeries": MessageLookupByLibrary.simpleMessage("继续系列"),
|
||||||
"general": MessageLookupByLibrary.simpleMessage("通用"),
|
"homeBookContinueSeriesDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"help": MessageLookupByLibrary.simpleMessage("Help"),
|
"继续系列书架上显示播放按钮",
|
||||||
"home": MessageLookupByLibrary.simpleMessage("首页"),
|
),
|
||||||
"homeBookContinueListening":
|
"homeBookDiscover": MessageLookupByLibrary.simpleMessage("发现"),
|
||||||
MessageLookupByLibrary.simpleMessage("继续收听"),
|
"homeBookListenAgain": MessageLookupByLibrary.simpleMessage("再听一遍"),
|
||||||
"homeBookContinueListeningDescription":
|
"homeBookListenAgainDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("继续收听书架上显示播放按钮"),
|
"再听一遍书架上显示播放按钮",
|
||||||
"homeBookContinueSeries": MessageLookupByLibrary.simpleMessage("继续系列"),
|
),
|
||||||
"homeBookContinueSeriesDescription":
|
"homeBookNewestAuthors": MessageLookupByLibrary.simpleMessage("最新作者"),
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"homeBookRecentlyAdded": MessageLookupByLibrary.simpleMessage("最近添加"),
|
||||||
"继续系列书架上显示播放按钮",
|
"homeBookRecommended": MessageLookupByLibrary.simpleMessage("推荐"),
|
||||||
),
|
"homeContinueListening": MessageLookupByLibrary.simpleMessage("继续收听"),
|
||||||
"homeBookDiscover": MessageLookupByLibrary.simpleMessage("发现"),
|
"homeListenAgain": MessageLookupByLibrary.simpleMessage("再听一遍"),
|
||||||
"homeBookListenAgain": MessageLookupByLibrary.simpleMessage("再听一遍"),
|
"homePageSettings": MessageLookupByLibrary.simpleMessage("主页设置"),
|
||||||
"homeBookListenAgainDescription": MessageLookupByLibrary.simpleMessage(
|
"homePageSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"再听一遍书架上显示播放按钮",
|
"自定义主页",
|
||||||
),
|
),
|
||||||
"homeBookNewestAuthors": MessageLookupByLibrary.simpleMessage("最新作者"),
|
"homePageSettingsOtherShelves": MessageLookupByLibrary.simpleMessage(
|
||||||
"homeBookRecentlyAdded": MessageLookupByLibrary.simpleMessage("最近添加"),
|
"其他书架",
|
||||||
"homeBookRecommended": MessageLookupByLibrary.simpleMessage("推荐"),
|
),
|
||||||
"homeContinueListening": MessageLookupByLibrary.simpleMessage("继续收听"),
|
"homePageSettingsOtherShelvesDescription":
|
||||||
"homeListenAgain": MessageLookupByLibrary.simpleMessage("再听一遍"),
|
MessageLookupByLibrary.simpleMessage("显示所有剩余书架上所有书籍的播放按钮"),
|
||||||
"homePageSettings": MessageLookupByLibrary.simpleMessage("主页设置"),
|
"homePageSettingsQuickPlay": MessageLookupByLibrary.simpleMessage("继续播放"),
|
||||||
"homePageSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
"homeStartListening": MessageLookupByLibrary.simpleMessage("开始收听"),
|
||||||
"自定义主页",
|
"language": MessageLookupByLibrary.simpleMessage("语言"),
|
||||||
),
|
"languageDescription": MessageLookupByLibrary.simpleMessage("语言切换"),
|
||||||
"homePageSettingsOtherShelves": MessageLookupByLibrary.simpleMessage(
|
"library": MessageLookupByLibrary.simpleMessage("媒体库"),
|
||||||
"其他书架",
|
"libraryChange": MessageLookupByLibrary.simpleMessage("更改媒体库"),
|
||||||
),
|
"libraryEmpty": MessageLookupByLibrary.simpleMessage("没有可用的库。"),
|
||||||
"homePageSettingsOtherShelvesDescription":
|
"libraryLoadError": m4,
|
||||||
MessageLookupByLibrary.simpleMessage("显示所有剩余书架上所有书籍的播放按钮"),
|
"librarySelect": MessageLookupByLibrary.simpleMessage("选择媒体库"),
|
||||||
"homePageSettingsQuickPlay":
|
"librarySwitchTooltip": MessageLookupByLibrary.simpleMessage("切换媒体库"),
|
||||||
MessageLookupByLibrary.simpleMessage("继续播放"),
|
"libraryTooltip": MessageLookupByLibrary.simpleMessage("浏览您的媒体库"),
|
||||||
"homeStartListening": MessageLookupByLibrary.simpleMessage("开始收听"),
|
"loading": MessageLookupByLibrary.simpleMessage("加载中..."),
|
||||||
"language": MessageLookupByLibrary.simpleMessage("语言"),
|
"loginLocal": MessageLookupByLibrary.simpleMessage("Local"),
|
||||||
"languageDescription": MessageLookupByLibrary.simpleMessage("语言切换"),
|
"loginLogin": MessageLookupByLibrary.simpleMessage("登录"),
|
||||||
"library": MessageLookupByLibrary.simpleMessage("媒体库"),
|
"loginOpenID": MessageLookupByLibrary.simpleMessage("OpenID"),
|
||||||
"libraryChange": MessageLookupByLibrary.simpleMessage("更改媒体库"),
|
"loginPassword": MessageLookupByLibrary.simpleMessage("密码"),
|
||||||
"libraryEmpty": MessageLookupByLibrary.simpleMessage("没有可用的库。"),
|
"loginServerClick": MessageLookupByLibrary.simpleMessage("单击此处"),
|
||||||
"libraryLoadError": m4,
|
"loginServerConnected": MessageLookupByLibrary.simpleMessage("服务器已连接,请登录"),
|
||||||
"librarySelect": MessageLookupByLibrary.simpleMessage("选择媒体库"),
|
"loginServerNo": MessageLookupByLibrary.simpleMessage("没有服务器? "),
|
||||||
"librarySwitchTooltip": MessageLookupByLibrary.simpleMessage("切换媒体库"),
|
"loginServerNoConnected": MessageLookupByLibrary.simpleMessage(
|
||||||
"libraryTooltip": MessageLookupByLibrary.simpleMessage("浏览您的媒体库"),
|
"请输入您的AudiobookShelf服务器的URL",
|
||||||
"loading": MessageLookupByLibrary.simpleMessage("加载中..."),
|
),
|
||||||
"loginLocal": MessageLookupByLibrary.simpleMessage("Local"),
|
"loginServerNot": m5,
|
||||||
"loginLogin": MessageLookupByLibrary.simpleMessage("登录"),
|
"loginServerTo": MessageLookupByLibrary.simpleMessage(" 了解如何设置服务器。"),
|
||||||
"loginOpenID": MessageLookupByLibrary.simpleMessage("OpenID"),
|
"loginTitle": m6,
|
||||||
"loginPassword": MessageLookupByLibrary.simpleMessage("密码"),
|
"loginToken": MessageLookupByLibrary.simpleMessage("Token"),
|
||||||
"loginServerClick": MessageLookupByLibrary.simpleMessage("单击此处"),
|
"loginUsername": MessageLookupByLibrary.simpleMessage("用户名"),
|
||||||
"loginServerConnected":
|
"logs": MessageLookupByLibrary.simpleMessage("日志"),
|
||||||
MessageLookupByLibrary.simpleMessage("服务器已连接,请登录"),
|
"nmpSettingsBackward": MessageLookupByLibrary.simpleMessage("快退间隔"),
|
||||||
"loginServerNo": MessageLookupByLibrary.simpleMessage("没有服务器? "),
|
"nmpSettingsForward": MessageLookupByLibrary.simpleMessage("快进间隔"),
|
||||||
"loginServerNoConnected": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsMediaControls": MessageLookupByLibrary.simpleMessage("媒体控制"),
|
||||||
"请输入您的AudiobookShelf服务器的URL",
|
"nmpSettingsMediaControlsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"选择要显示的媒体控件",
|
||||||
"loginServerNot": m5,
|
),
|
||||||
"loginServerTo": MessageLookupByLibrary.simpleMessage(" 了解如何设置服务器。"),
|
"nmpSettingsSelectOne": MessageLookupByLibrary.simpleMessage(
|
||||||
"loginTitle": m6,
|
"在下面选择一个字段进行插入",
|
||||||
"loginToken": MessageLookupByLibrary.simpleMessage("Token"),
|
),
|
||||||
"loginUsername": MessageLookupByLibrary.simpleMessage("用户名"),
|
"nmpSettingsShowChapterProgress": MessageLookupByLibrary.simpleMessage(
|
||||||
"logs": MessageLookupByLibrary.simpleMessage("日志"),
|
"显示章节进度",
|
||||||
"nmpSettingsBackward": MessageLookupByLibrary.simpleMessage("快退间隔"),
|
),
|
||||||
"nmpSettingsForward": MessageLookupByLibrary.simpleMessage("快进间隔"),
|
"nmpSettingsShowChapterProgressDescription":
|
||||||
"nmpSettingsMediaControls":
|
MessageLookupByLibrary.simpleMessage("而不是本书的整体进展"),
|
||||||
MessageLookupByLibrary.simpleMessage("媒体控制"),
|
"nmpSettingsSubTitle": MessageLookupByLibrary.simpleMessage("副标题"),
|
||||||
"nmpSettingsMediaControlsDescription":
|
"nmpSettingsSubTitleDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"通知的副标题\n",
|
||||||
"选择要显示的媒体控件",
|
),
|
||||||
),
|
"nmpSettingsTitle": MessageLookupByLibrary.simpleMessage("主标题"),
|
||||||
"nmpSettingsSelectOne": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsTitleDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"在下面选择一个字段进行插入",
|
"通知的标题\n",
|
||||||
),
|
),
|
||||||
"nmpSettingsShowChapterProgress": MessageLookupByLibrary.simpleMessage(
|
"no": MessageLookupByLibrary.simpleMessage("否"),
|
||||||
"显示章节进度",
|
"notImplemented": MessageLookupByLibrary.simpleMessage("未实现"),
|
||||||
),
|
"notificationMediaPlayer": MessageLookupByLibrary.simpleMessage("通知媒体播放器"),
|
||||||
"nmpSettingsShowChapterProgressDescription":
|
"notificationMediaPlayerDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("而不是本书的整体进展"),
|
"在通知中自定义媒体播放器",
|
||||||
"nmpSettingsSubTitle": MessageLookupByLibrary.simpleMessage("副标题"),
|
),
|
||||||
"nmpSettingsSubTitleDescription": MessageLookupByLibrary.simpleMessage(
|
"ok": MessageLookupByLibrary.simpleMessage("确定"),
|
||||||
"通知的副标题\n",
|
"pause": MessageLookupByLibrary.simpleMessage("暂停"),
|
||||||
),
|
"play": MessageLookupByLibrary.simpleMessage("播放"),
|
||||||
"nmpSettingsTitle": MessageLookupByLibrary.simpleMessage("主标题"),
|
"playerSettings": MessageLookupByLibrary.simpleMessage("播放器设置"),
|
||||||
"nmpSettingsTitleDescription": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsCompleteTime": MessageLookupByLibrary.simpleMessage(
|
||||||
"通知的标题\n",
|
"剩余时间标记完成",
|
||||||
),
|
),
|
||||||
"no": MessageLookupByLibrary.simpleMessage("否"),
|
"playerSettingsCompleteTimeDescriptionHead":
|
||||||
"notImplemented": MessageLookupByLibrary.simpleMessage("未实现"),
|
MessageLookupByLibrary.simpleMessage("当书中剩余时间少于 "),
|
||||||
"notificationMediaPlayer":
|
"playerSettingsCompleteTimeDescriptionTail":
|
||||||
MessageLookupByLibrary.simpleMessage("通知媒体播放器"),
|
MessageLookupByLibrary.simpleMessage(" 时,标记完成"),
|
||||||
"notificationMediaPlayerDescription":
|
"playerSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"自定义播放器设置",
|
||||||
"在通知中自定义媒体播放器",
|
),
|
||||||
),
|
"playerSettingsDisplay": MessageLookupByLibrary.simpleMessage("显示设置"),
|
||||||
"ok": MessageLookupByLibrary.simpleMessage("确定"),
|
"playerSettingsDisplayChapterProgress":
|
||||||
"pause": MessageLookupByLibrary.simpleMessage("暂停"),
|
MessageLookupByLibrary.simpleMessage("显示章节进度"),
|
||||||
"play": MessageLookupByLibrary.simpleMessage("播放"),
|
"playerSettingsDisplayChapterProgressDescription":
|
||||||
"playerSettings": MessageLookupByLibrary.simpleMessage("播放器设置"),
|
MessageLookupByLibrary.simpleMessage("在播放器中显示当前章节的进度"),
|
||||||
"playerSettingsCompleteTime": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsDisplayTotalProgress": MessageLookupByLibrary.simpleMessage(
|
||||||
"剩余时间标记完成",
|
"显示总进度",
|
||||||
),
|
),
|
||||||
"playerSettingsCompleteTimeDescriptionHead":
|
"playerSettingsDisplayTotalProgressDescription":
|
||||||
MessageLookupByLibrary.simpleMessage("当书中剩余时间少于 "),
|
MessageLookupByLibrary.simpleMessage("在播放器中显示当前书籍的总进度"),
|
||||||
"playerSettingsCompleteTimeDescriptionTail":
|
"playerSettingsPlaybackInterval": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(" 时,标记完成"),
|
"播放报告间隔",
|
||||||
"playerSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"自定义播放器设置",
|
"playerSettingsPlaybackIntervalDescriptionHead":
|
||||||
),
|
MessageLookupByLibrary.simpleMessage("每 "),
|
||||||
"playerSettingsDisplay": MessageLookupByLibrary.simpleMessage("显示设置"),
|
"playerSettingsPlaybackIntervalDescriptionTail":
|
||||||
"playerSettingsDisplayChapterProgress":
|
MessageLookupByLibrary.simpleMessage(" 向服务器报告一次进度"),
|
||||||
MessageLookupByLibrary.simpleMessage("显示章节进度"),
|
"playerSettingsPlaybackReporting": MessageLookupByLibrary.simpleMessage(
|
||||||
"playerSettingsDisplayChapterProgressDescription":
|
"回放报告",
|
||||||
MessageLookupByLibrary.simpleMessage("在播放器中显示当前章节的进度"),
|
),
|
||||||
"playerSettingsDisplayTotalProgress":
|
"playerSettingsPlaybackReportingIgnore":
|
||||||
MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage("忽略播放位置小于"),
|
||||||
"显示总进度",
|
"playerSettingsPlaybackReportingMinimum":
|
||||||
),
|
MessageLookupByLibrary.simpleMessage("回放报告最小位置"),
|
||||||
"playerSettingsDisplayTotalProgressDescription":
|
"playerSettingsPlaybackReportingMinimumDescriptionHead":
|
||||||
MessageLookupByLibrary.simpleMessage("在播放器中显示当前书籍的总进度"),
|
MessageLookupByLibrary.simpleMessage("不要报告本书前 "),
|
||||||
"playerSettingsPlaybackInterval": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsPlaybackReportingMinimumDescriptionTail":
|
||||||
"播放报告间隔",
|
MessageLookupByLibrary.simpleMessage(" 的播放"),
|
||||||
),
|
"playerSettingsRememberForEveryBook": MessageLookupByLibrary.simpleMessage(
|
||||||
"playerSettingsPlaybackIntervalDescriptionHead":
|
"记住每本书的播放器设置",
|
||||||
MessageLookupByLibrary.simpleMessage("每 "),
|
),
|
||||||
"playerSettingsPlaybackIntervalDescriptionTail":
|
"playerSettingsRememberForEveryBookDescription":
|
||||||
MessageLookupByLibrary.simpleMessage(" 向服务器报告一次进度"),
|
MessageLookupByLibrary.simpleMessage("每本书都会记住播放速度、音量等设置"),
|
||||||
"playerSettingsPlaybackReporting": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeed": MessageLookupByLibrary.simpleMessage("播放速度"),
|
||||||
"回放报告",
|
"playerSettingsSpeedDefault": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"默认播放速度",
|
||||||
"playerSettingsPlaybackReportingIgnore":
|
),
|
||||||
MessageLookupByLibrary.simpleMessage("忽略播放位置小于"),
|
"playerSettingsSpeedOptions": MessageLookupByLibrary.simpleMessage(
|
||||||
"playerSettingsPlaybackReportingMinimum":
|
"播放速度选项",
|
||||||
MessageLookupByLibrary.simpleMessage("回放报告最小位置"),
|
),
|
||||||
"playerSettingsPlaybackReportingMinimumDescriptionHead":
|
"playerSettingsSpeedOptionsSelect": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("不要报告本书前 "),
|
"播放速度选项",
|
||||||
"playerSettingsPlaybackReportingMinimumDescriptionTail":
|
),
|
||||||
MessageLookupByLibrary.simpleMessage(" 的播放"),
|
"playerSettingsSpeedOptionsSelectAdd": MessageLookupByLibrary.simpleMessage(
|
||||||
"playerSettingsRememberForEveryBook":
|
"添加一个速度选项",
|
||||||
MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"记住每本书的播放器设置",
|
"playerSettingsSpeedOptionsSelectAddHelper":
|
||||||
),
|
MessageLookupByLibrary.simpleMessage("输入一个新的速度选项"),
|
||||||
"playerSettingsRememberForEveryBookDescription":
|
"playerSettingsSpeedSelect": MessageLookupByLibrary.simpleMessage("选择播放速度"),
|
||||||
MessageLookupByLibrary.simpleMessage("每本书都会记住播放速度、音量等设置"),
|
"playerSettingsSpeedSelectHelper": MessageLookupByLibrary.simpleMessage(
|
||||||
"playerSettingsSpeed": MessageLookupByLibrary.simpleMessage("播放速度"),
|
"输入默认的播放速度",
|
||||||
"playerSettingsSpeedDefault": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"默认播放速度",
|
"playlistsMine": MessageLookupByLibrary.simpleMessage("播放列表"),
|
||||||
),
|
"readLess": MessageLookupByLibrary.simpleMessage("折叠"),
|
||||||
"playerSettingsSpeedOptions": MessageLookupByLibrary.simpleMessage(
|
"readMore": MessageLookupByLibrary.simpleMessage("展开"),
|
||||||
"播放速度选项",
|
"refresh": MessageLookupByLibrary.simpleMessage("刷新"),
|
||||||
),
|
"reset": MessageLookupByLibrary.simpleMessage("重置"),
|
||||||
"playerSettingsSpeedOptionsSelect":
|
"resetAppSettings": MessageLookupByLibrary.simpleMessage("重置应用程序设置"),
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"resetAppSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"播放速度选项",
|
"将应用程序设置重置为默认值",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptionsSelectAdd":
|
"resetAppSettingsDialog": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"您确定要重置应用程序设置吗?",
|
||||||
"添加一个速度选项",
|
),
|
||||||
),
|
"restore": MessageLookupByLibrary.simpleMessage("恢复"),
|
||||||
"playerSettingsSpeedOptionsSelectAddHelper":
|
"restoreBackup": MessageLookupByLibrary.simpleMessage("恢复备份"),
|
||||||
MessageLookupByLibrary.simpleMessage("输入一个新的速度选项"),
|
"restoreBackupHint": MessageLookupByLibrary.simpleMessage("将备份粘贴到此处"),
|
||||||
"playerSettingsSpeedSelect":
|
"restoreBackupInvalid": MessageLookupByLibrary.simpleMessage("无效备份"),
|
||||||
MessageLookupByLibrary.simpleMessage("选择播放速度"),
|
"restoreBackupSuccess": MessageLookupByLibrary.simpleMessage("设置已恢复"),
|
||||||
"playerSettingsSpeedSelectHelper": MessageLookupByLibrary.simpleMessage(
|
"restoreBackupValidator": MessageLookupByLibrary.simpleMessage("请将备份粘贴到此处"),
|
||||||
"输入默认的播放速度",
|
"restoreDescription": MessageLookupByLibrary.simpleMessage("从备份中还原应用程序设置"),
|
||||||
),
|
"resume": MessageLookupByLibrary.simpleMessage("继续"),
|
||||||
"playlistsMine": MessageLookupByLibrary.simpleMessage("播放列表"),
|
"retry": MessageLookupByLibrary.simpleMessage("重试"),
|
||||||
"readLess": MessageLookupByLibrary.simpleMessage("折叠"),
|
"settings": MessageLookupByLibrary.simpleMessage("设置"),
|
||||||
"readMore": MessageLookupByLibrary.simpleMessage("展开"),
|
"shakeAction": MessageLookupByLibrary.simpleMessage("抖动操作"),
|
||||||
"refresh": MessageLookupByLibrary.simpleMessage("刷新"),
|
"shakeActionDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"reset": MessageLookupByLibrary.simpleMessage("重置"),
|
"检测到抖动时要执行的操作",
|
||||||
"resetAppSettings": MessageLookupByLibrary.simpleMessage("重置应用程序设置"),
|
),
|
||||||
"resetAppSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
"shakeActivationThreshold": MessageLookupByLibrary.simpleMessage("抖动激活阈值"),
|
||||||
"将应用程序设置重置为默认值",
|
"shakeActivationThresholdDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
),
|
"门槛越高,你就越难摇晃",
|
||||||
"resetAppSettingsDialog": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"您确定要重置应用程序设置吗?",
|
"shakeDetector": MessageLookupByLibrary.simpleMessage("抖动检测器"),
|
||||||
),
|
"shakeDetectorDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"restore": MessageLookupByLibrary.simpleMessage("恢复"),
|
"自定义抖动检测器设置",
|
||||||
"restoreBackup": MessageLookupByLibrary.simpleMessage("恢复备份"),
|
),
|
||||||
"restoreBackupHint": MessageLookupByLibrary.simpleMessage("将备份粘贴到此处"),
|
"shakeDetectorEnable": MessageLookupByLibrary.simpleMessage("启用抖动检测"),
|
||||||
"restoreBackupInvalid": MessageLookupByLibrary.simpleMessage("无效备份"),
|
"shakeDetectorEnableDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"restoreBackupSuccess": MessageLookupByLibrary.simpleMessage("设置已恢复"),
|
"启用抖动检测以执行各种操作",
|
||||||
"restoreBackupValidator":
|
),
|
||||||
MessageLookupByLibrary.simpleMessage("请将备份粘贴到此处"),
|
"shakeDetectorSettings": MessageLookupByLibrary.simpleMessage("抖动检测器设置"),
|
||||||
"restoreDescription":
|
"shakeFeedback": MessageLookupByLibrary.simpleMessage("抖动反馈"),
|
||||||
MessageLookupByLibrary.simpleMessage("从备份中还原应用程序设置"),
|
"shakeFeedbackDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"resume": MessageLookupByLibrary.simpleMessage("继续"),
|
"检测到抖动时给出的反馈",
|
||||||
"retry": MessageLookupByLibrary.simpleMessage("重试"),
|
),
|
||||||
"settings": MessageLookupByLibrary.simpleMessage("设置"),
|
"shakeSelectAction": MessageLookupByLibrary.simpleMessage("选择抖动动作"),
|
||||||
"shakeAction": MessageLookupByLibrary.simpleMessage("抖动操作"),
|
"shakeSelectActivationThreshold": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeActionDescription": MessageLookupByLibrary.simpleMessage(
|
"选择抖动激活阈值",
|
||||||
"检测到抖动时要执行的操作",
|
),
|
||||||
),
|
"shakeSelectActivationThresholdHelper":
|
||||||
"shakeActivationThreshold":
|
MessageLookupByLibrary.simpleMessage("输入一个数字以m/s²为单位设置阈值"),
|
||||||
MessageLookupByLibrary.simpleMessage("抖动激活阈值"),
|
"shakeSelectFeedback": MessageLookupByLibrary.simpleMessage("选择抖动反馈"),
|
||||||
"shakeActivationThresholdDescription":
|
"themeMode": MessageLookupByLibrary.simpleMessage("主题模式"),
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"themeModeDark": MessageLookupByLibrary.simpleMessage("深色"),
|
||||||
"门槛越高,你就越难摇晃",
|
"themeModeHighContrast": MessageLookupByLibrary.simpleMessage("高对比度模式"),
|
||||||
),
|
"themeModeHighContrastDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeDetector": MessageLookupByLibrary.simpleMessage("抖动检测器"),
|
"增加背景和文本之间的对比度",
|
||||||
"shakeDetectorDescription": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"自定义抖动检测器设置",
|
"themeModeLight": MessageLookupByLibrary.simpleMessage("浅色"),
|
||||||
),
|
"themeModeSystem": MessageLookupByLibrary.simpleMessage("跟随系统"),
|
||||||
"shakeDetectorEnable": MessageLookupByLibrary.simpleMessage("启用抖动检测"),
|
"themeSettings": MessageLookupByLibrary.simpleMessage("主题设置"),
|
||||||
"shakeDetectorEnableDescription": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColors": MessageLookupByLibrary.simpleMessage("主题色"),
|
||||||
"启用抖动检测以执行各种操作",
|
"themeSettingsColorsAndroid": MessageLookupByLibrary.simpleMessage("主题色"),
|
||||||
),
|
"themeSettingsColorsBook": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeDetectorSettings":
|
"书籍详情页自适应主题",
|
||||||
MessageLookupByLibrary.simpleMessage("抖动检测器设置"),
|
),
|
||||||
"shakeFeedback": MessageLookupByLibrary.simpleMessage("抖动反馈"),
|
"themeSettingsColorsBookDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeFeedbackDescription": MessageLookupByLibrary.simpleMessage(
|
"以牺牲一些性能为代价,对书籍详情页的颜色进行美化",
|
||||||
"检测到抖动时给出的反馈",
|
),
|
||||||
),
|
"themeSettingsColorsCurrent": MessageLookupByLibrary.simpleMessage(
|
||||||
"shakeSelectAction": MessageLookupByLibrary.simpleMessage("选择抖动动作"),
|
"根据当前播放的书籍调整主题",
|
||||||
"shakeSelectActivationThreshold": MessageLookupByLibrary.simpleMessage(
|
),
|
||||||
"选择抖动激活阈值",
|
"themeSettingsColorsCurrentDescription":
|
||||||
),
|
MessageLookupByLibrary.simpleMessage("使用当前播放书籍的主题颜色"),
|
||||||
"shakeSelectActivationThresholdHelper":
|
"themeSettingsColorsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
MessageLookupByLibrary.simpleMessage("输入一个数字以m/s²为单位设置阈值"),
|
"使用应用程序的系统主题色",
|
||||||
"shakeSelectFeedback": MessageLookupByLibrary.simpleMessage("选择抖动反馈"),
|
),
|
||||||
"themeMode": MessageLookupByLibrary.simpleMessage("主题模式"),
|
"themeSettingsDescription": MessageLookupByLibrary.simpleMessage("自定义应用主题"),
|
||||||
"themeModeDark": MessageLookupByLibrary.simpleMessage("深色"),
|
"timeSecond": m7,
|
||||||
"themeModeHighContrast": MessageLookupByLibrary.simpleMessage("高对比度模式"),
|
"unknown": MessageLookupByLibrary.simpleMessage("未知"),
|
||||||
"themeModeHighContrastDescription":
|
"webVersion": MessageLookupByLibrary.simpleMessage("Web版本"),
|
||||||
MessageLookupByLibrary.simpleMessage(
|
"yes": MessageLookupByLibrary.simpleMessage("是"),
|
||||||
"增加背景和文本之间的对比度",
|
"you": MessageLookupByLibrary.simpleMessage("我的"),
|
||||||
),
|
"youTooltip": MessageLookupByLibrary.simpleMessage("您的个人资料和设置"),
|
||||||
"themeModeLight": MessageLookupByLibrary.simpleMessage("浅色"),
|
};
|
||||||
"themeModeSystem": MessageLookupByLibrary.simpleMessage("跟随系统"),
|
|
||||||
"themeSettings": MessageLookupByLibrary.simpleMessage("主题设置"),
|
|
||||||
"themeSettingsColors": MessageLookupByLibrary.simpleMessage("主题色"),
|
|
||||||
"themeSettingsColorsAndroid":
|
|
||||||
MessageLookupByLibrary.simpleMessage("主题色"),
|
|
||||||
"themeSettingsColorsBook": MessageLookupByLibrary.simpleMessage(
|
|
||||||
"书籍详情页自适应主题",
|
|
||||||
),
|
|
||||||
"themeSettingsColorsBookDescription":
|
|
||||||
MessageLookupByLibrary.simpleMessage(
|
|
||||||
"以牺牲一些性能为代价,对书籍详情页的颜色进行美化",
|
|
||||||
),
|
|
||||||
"themeSettingsColorsCurrent": MessageLookupByLibrary.simpleMessage(
|
|
||||||
"根据当前播放的书籍调整主题",
|
|
||||||
),
|
|
||||||
"themeSettingsColorsCurrentDescription":
|
|
||||||
MessageLookupByLibrary.simpleMessage("使用当前播放书籍的主题颜色"),
|
|
||||||
"themeSettingsColorsDescription": MessageLookupByLibrary.simpleMessage(
|
|
||||||
"使用应用程序的系统主题色",
|
|
||||||
),
|
|
||||||
"themeSettingsDescription":
|
|
||||||
MessageLookupByLibrary.simpleMessage("自定义应用主题"),
|
|
||||||
"timeSecond": m7,
|
|
||||||
"unknown": MessageLookupByLibrary.simpleMessage("未知"),
|
|
||||||
"webVersion": MessageLookupByLibrary.simpleMessage("Web版本"),
|
|
||||||
"yes": MessageLookupByLibrary.simpleMessage("是"),
|
|
||||||
"you": MessageLookupByLibrary.simpleMessage("我的"),
|
|
||||||
"youTooltip": MessageLookupByLibrary.simpleMessage("您的个人资料和设置"),
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,6 @@ import 'package:vaani/framework.dart';
|
||||||
import 'package:vaani/generated/l10n.dart';
|
import 'package:vaani/generated/l10n.dart';
|
||||||
import 'package:vaani/globals.dart';
|
import 'package:vaani/globals.dart';
|
||||||
import 'package:vaani/router/router.dart';
|
import 'package:vaani/router/router.dart';
|
||||||
import 'package:vaani/shared/utils/helper.dart';
|
|
||||||
import 'package:vaani/shared/widgets/tray_manager.dart';
|
|
||||||
import 'package:vaani/theme/providers/system_theme_provider.dart';
|
import 'package:vaani/theme/providers/system_theme_provider.dart';
|
||||||
import 'package:vaani/theme/providers/theme_from_cover_provider.dart';
|
import 'package:vaani/theme/providers/theme_from_cover_provider.dart';
|
||||||
import 'package:vaani/theme/theme.dart';
|
import 'package:vaani/theme/theme.dart';
|
||||||
|
|
@ -45,9 +43,7 @@ void main() async {
|
||||||
runApp(
|
runApp(
|
||||||
UncontrolledProviderScope(
|
UncontrolledProviderScope(
|
||||||
container: container,
|
container: container,
|
||||||
child: Helper.isDesktop()
|
child: Framework(AbsApp()),
|
||||||
? Framework(TrayManager(AbsApp()))
|
|
||||||
: Framework(AbsApp()),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_platform_widgets/flutter_platform_widgets.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:vaani/features/you/view/server_manager.dart';
|
import 'package:vaani/features/you/view/server_manager.dart';
|
||||||
import 'package:vaani/router/router.dart';
|
import 'package:vaani/router/router.dart';
|
||||||
|
|
@ -26,7 +27,8 @@ class MyDrawer extends StatelessWidget {
|
||||||
title: const Text('server Settings'),
|
title: const Text('server Settings'),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.of(context).push(
|
Navigator.of(context).push(
|
||||||
MaterialPageRoute(
|
platformPageRoute(
|
||||||
|
context: context,
|
||||||
builder: (context) => const ServerManagerPage(),
|
builder: (context) => const ServerManagerPage(),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue