mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-02-17 23:09:36 +00:00
222
This commit is contained in:
parent
89b9925e34
commit
779c132a11
4 changed files with 796 additions and 745 deletions
|
|
@ -169,7 +169,7 @@ class AudiobookPlayer extends AudioPlayer {
|
||||||
return stop();
|
return stop();
|
||||||
}
|
}
|
||||||
if (_currentIndex != 0 && index == _currentIndex) {
|
if (_currentIndex != 0 && index == _currentIndex) {
|
||||||
if (initialPosition != null && initialPosition <= position) {
|
if (initialPosition != null) {
|
||||||
seek(initialPosition);
|
seek(initialPosition);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
|
|
@ -228,10 +228,10 @@ class AudiobookChapterProgressBar extends HookConsumerWidget {
|
||||||
: currentChapter.end - currentChapter.start,
|
: currentChapter.end - currentChapter.start,
|
||||||
// ! TODO add onSeek
|
// ! TODO add onSeek
|
||||||
onSeek: (duration) {
|
onSeek: (duration) {
|
||||||
// player.seekInBook(
|
player.seekInBook(
|
||||||
// duration + (currentChapter?.start ?? const Duration(seconds: 0)),
|
duration + (currentChapter?.start ?? const Duration(seconds: 0)),
|
||||||
// );
|
);
|
||||||
player.seek(duration);
|
// player.seek(duration);
|
||||||
},
|
},
|
||||||
thumbRadius: 8,
|
thumbRadius: 8,
|
||||||
buffered:
|
buffered:
|
||||||
|
|
|
||||||
|
|
@ -54,8 +54,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"accountDeleteServer": MessageLookupByLibrary.simpleMessage(
|
"accountDeleteServer": MessageLookupByLibrary.simpleMessage(
|
||||||
"Delete Server",
|
"Delete Server",
|
||||||
),
|
),
|
||||||
"accountInvalidURL": MessageLookupByLibrary.simpleMessage("Invalid URL"),
|
"accountInvalidURL":
|
||||||
"accountManage": MessageLookupByLibrary.simpleMessage("Manage Accounts"),
|
MessageLookupByLibrary.simpleMessage("Invalid URL"),
|
||||||
|
"accountManage":
|
||||||
|
MessageLookupByLibrary.simpleMessage("Manage Accounts"),
|
||||||
"accountRegisteredServers": MessageLookupByLibrary.simpleMessage(
|
"accountRegisteredServers": MessageLookupByLibrary.simpleMessage(
|
||||||
"Registered Servers",
|
"Registered Servers",
|
||||||
),
|
),
|
||||||
|
|
@ -94,7 +96,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"autoTurnOnTimerAlways": MessageLookupByLibrary.simpleMessage(
|
"autoTurnOnTimerAlways": MessageLookupByLibrary.simpleMessage(
|
||||||
"Always Auto Turn On Timer",
|
"Always Auto Turn On Timer",
|
||||||
),
|
),
|
||||||
"autoTurnOnTimerAlwaysDescription": MessageLookupByLibrary.simpleMessage(
|
"autoTurnOnTimerAlwaysDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Always turn on the sleep timer, no matter what",
|
"Always turn on the sleep timer, no matter what",
|
||||||
),
|
),
|
||||||
"autoTurnOnTimerDescription": MessageLookupByLibrary.simpleMessage(
|
"autoTurnOnTimerDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
|
|
@ -122,9 +125,11 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"bookAuthors": MessageLookupByLibrary.simpleMessage("Authors"),
|
"bookAuthors": MessageLookupByLibrary.simpleMessage("Authors"),
|
||||||
"bookDownloads": MessageLookupByLibrary.simpleMessage("Downloads"),
|
"bookDownloads": MessageLookupByLibrary.simpleMessage("Downloads"),
|
||||||
"bookGenres": MessageLookupByLibrary.simpleMessage("Genres"),
|
"bookGenres": MessageLookupByLibrary.simpleMessage("Genres"),
|
||||||
"bookMetadataAbridged": MessageLookupByLibrary.simpleMessage("Abridged"),
|
"bookMetadataAbridged":
|
||||||
|
MessageLookupByLibrary.simpleMessage("Abridged"),
|
||||||
"bookMetadataLength": MessageLookupByLibrary.simpleMessage("Length"),
|
"bookMetadataLength": MessageLookupByLibrary.simpleMessage("Length"),
|
||||||
"bookMetadataPublished": MessageLookupByLibrary.simpleMessage("Published"),
|
"bookMetadataPublished":
|
||||||
|
MessageLookupByLibrary.simpleMessage("Published"),
|
||||||
"bookMetadataUnabridged": MessageLookupByLibrary.simpleMessage(
|
"bookMetadataUnabridged": MessageLookupByLibrary.simpleMessage(
|
||||||
"Unabridged",
|
"Unabridged",
|
||||||
),
|
),
|
||||||
|
|
@ -166,11 +171,13 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"homeBookContinueSeries": MessageLookupByLibrary.simpleMessage(
|
"homeBookContinueSeries": MessageLookupByLibrary.simpleMessage(
|
||||||
"Continue Series",
|
"Continue Series",
|
||||||
),
|
),
|
||||||
"homeBookContinueSeriesDescription": MessageLookupByLibrary.simpleMessage(
|
"homeBookContinueSeriesDescription":
|
||||||
|
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":
|
||||||
|
MessageLookupByLibrary.simpleMessage("Listen Again"),
|
||||||
"homeBookListenAgainDescription": MessageLookupByLibrary.simpleMessage(
|
"homeBookListenAgainDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"Show play button for all books in listen again shelf",
|
"Show play button for all books in listen again shelf",
|
||||||
),
|
),
|
||||||
|
|
@ -180,7 +187,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"homeBookRecentlyAdded": MessageLookupByLibrary.simpleMessage(
|
"homeBookRecentlyAdded": MessageLookupByLibrary.simpleMessage(
|
||||||
"Recently Added",
|
"Recently Added",
|
||||||
),
|
),
|
||||||
"homeBookRecommended": MessageLookupByLibrary.simpleMessage("Recommended"),
|
"homeBookRecommended":
|
||||||
|
MessageLookupByLibrary.simpleMessage("Recommended"),
|
||||||
"homeContinueListening": MessageLookupByLibrary.simpleMessage(
|
"homeContinueListening": MessageLookupByLibrary.simpleMessage(
|
||||||
"Continue Listening",
|
"Continue Listening",
|
||||||
),
|
),
|
||||||
|
|
@ -253,7 +261,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"nmpSettingsMediaControls": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsMediaControls": MessageLookupByLibrary.simpleMessage(
|
||||||
"Media Controls",
|
"Media Controls",
|
||||||
),
|
),
|
||||||
"nmpSettingsMediaControlsDescription": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsMediaControlsDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Select the media controls to display",
|
"Select the media controls to display",
|
||||||
),
|
),
|
||||||
"nmpSettingsSelectOne": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsSelectOne": MessageLookupByLibrary.simpleMessage(
|
||||||
|
|
@ -272,27 +281,32 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"nmpSettingsSubTitleDescription": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsSubTitleDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"The subtitle of the notification\n",
|
"The subtitle of the notification\n",
|
||||||
),
|
),
|
||||||
"nmpSettingsTitle": MessageLookupByLibrary.simpleMessage("Primary Title"),
|
"nmpSettingsTitle":
|
||||||
|
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":
|
||||||
|
MessageLookupByLibrary.simpleMessage("Not implemented"),
|
||||||
"notificationMediaPlayer": MessageLookupByLibrary.simpleMessage(
|
"notificationMediaPlayer": MessageLookupByLibrary.simpleMessage(
|
||||||
"Notification Media Player",
|
"Notification Media Player",
|
||||||
),
|
),
|
||||||
"notificationMediaPlayerDescription": MessageLookupByLibrary.simpleMessage(
|
"notificationMediaPlayerDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Customize the media player in notifications",
|
"Customize the media player in notifications",
|
||||||
),
|
),
|
||||||
"ok": MessageLookupByLibrary.simpleMessage("OK"),
|
"ok": MessageLookupByLibrary.simpleMessage("OK"),
|
||||||
"pause": MessageLookupByLibrary.simpleMessage("Pause"),
|
"pause": MessageLookupByLibrary.simpleMessage("Pause"),
|
||||||
"play": MessageLookupByLibrary.simpleMessage("Play"),
|
"play": MessageLookupByLibrary.simpleMessage("Play"),
|
||||||
"playerSettings": MessageLookupByLibrary.simpleMessage("Player Settings"),
|
"playerSettings":
|
||||||
|
MessageLookupByLibrary.simpleMessage("Player Settings"),
|
||||||
"playerSettingsCompleteTime": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsCompleteTime": MessageLookupByLibrary.simpleMessage(
|
||||||
"Mark Complete When Time Left",
|
"Mark Complete When Time Left",
|
||||||
),
|
),
|
||||||
"playerSettingsCompleteTimeDescriptionHead":
|
"playerSettingsCompleteTimeDescriptionHead":
|
||||||
MessageLookupByLibrary.simpleMessage("Mark complete when less than "),
|
MessageLookupByLibrary.simpleMessage(
|
||||||
|
"Mark complete when less than "),
|
||||||
"playerSettingsCompleteTimeDescriptionTail":
|
"playerSettingsCompleteTimeDescriptionTail":
|
||||||
MessageLookupByLibrary.simpleMessage(" left in the book"),
|
MessageLookupByLibrary.simpleMessage(" left in the book"),
|
||||||
"playerSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
|
|
@ -307,7 +321,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Show the progress of the current chapter in the player",
|
"Show the progress of the current chapter in the player",
|
||||||
),
|
),
|
||||||
"playerSettingsDisplayTotalProgress": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsDisplayTotalProgress":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Show Total Progress",
|
"Show Total Progress",
|
||||||
),
|
),
|
||||||
"playerSettingsDisplayTotalProgressDescription":
|
"playerSettingsDisplayTotalProgressDescription":
|
||||||
|
|
@ -336,7 +351,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
),
|
),
|
||||||
"playerSettingsPlaybackReportingMinimumDescriptionTail":
|
"playerSettingsPlaybackReportingMinimumDescriptionTail":
|
||||||
MessageLookupByLibrary.simpleMessage("of the book"),
|
MessageLookupByLibrary.simpleMessage("of the book"),
|
||||||
"playerSettingsRememberForEveryBook": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsRememberForEveryBook":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Remember Player Settings for Every Book",
|
"Remember Player Settings for Every Book",
|
||||||
),
|
),
|
||||||
"playerSettingsRememberForEveryBookDescription":
|
"playerSettingsRememberForEveryBookDescription":
|
||||||
|
|
@ -350,14 +366,17 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"playerSettingsSpeedOptions": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedOptions": MessageLookupByLibrary.simpleMessage(
|
||||||
"Speed Options",
|
"Speed Options",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptionsSelect": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedOptionsSelect":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Select Speed Options",
|
"Select Speed Options",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptionsSelectAdd": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedOptionsSelectAdd":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Add Speed Option",
|
"Add Speed Option",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptionsSelectAddHelper":
|
"playerSettingsSpeedOptionsSelectAddHelper":
|
||||||
MessageLookupByLibrary.simpleMessage("Enter a new speed option to add"),
|
MessageLookupByLibrary.simpleMessage(
|
||||||
|
"Enter a new speed option to add"),
|
||||||
"playerSettingsSpeedSelect": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedSelect": MessageLookupByLibrary.simpleMessage(
|
||||||
"Select Speed",
|
"Select Speed",
|
||||||
),
|
),
|
||||||
|
|
@ -405,7 +424,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"shakeActivationThreshold": MessageLookupByLibrary.simpleMessage(
|
"shakeActivationThreshold": MessageLookupByLibrary.simpleMessage(
|
||||||
"Shake Activation Threshold",
|
"Shake Activation Threshold",
|
||||||
),
|
),
|
||||||
"shakeActivationThresholdDescription": MessageLookupByLibrary.simpleMessage(
|
"shakeActivationThresholdDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"The higher the threshold, the harder you need to shake",
|
"The higher the threshold, the harder you need to shake",
|
||||||
),
|
),
|
||||||
"shakeDetector": MessageLookupByLibrary.simpleMessage("Shake Detector"),
|
"shakeDetector": MessageLookupByLibrary.simpleMessage("Shake Detector"),
|
||||||
|
|
@ -443,7 +463,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"themeModeHighContrast": MessageLookupByLibrary.simpleMessage(
|
"themeModeHighContrast": MessageLookupByLibrary.simpleMessage(
|
||||||
"High Contrast Mode",
|
"High Contrast Mode",
|
||||||
),
|
),
|
||||||
"themeModeHighContrastDescription": MessageLookupByLibrary.simpleMessage(
|
"themeModeHighContrastDescription":
|
||||||
|
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"),
|
||||||
|
|
@ -458,7 +479,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"themeSettingsColorsBook": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColorsBook": MessageLookupByLibrary.simpleMessage(
|
||||||
"Adaptive Theme on Item Page",
|
"Adaptive Theme on Item Page",
|
||||||
),
|
),
|
||||||
"themeSettingsColorsBookDescription": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColorsBookDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"Get fancy with the colors on the item page at the cost of some performance",
|
"Get fancy with the colors on the item page at the cost of some performance",
|
||||||
),
|
),
|
||||||
"themeSettingsColorsCurrent": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColorsCurrent": MessageLookupByLibrary.simpleMessage(
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"accountDeleteServer": MessageLookupByLibrary.simpleMessage("删除服务器"),
|
"accountDeleteServer": MessageLookupByLibrary.simpleMessage("删除服务器"),
|
||||||
"accountInvalidURL": MessageLookupByLibrary.simpleMessage("无效网址"),
|
"accountInvalidURL": MessageLookupByLibrary.simpleMessage("无效网址"),
|
||||||
"accountManage": MessageLookupByLibrary.simpleMessage("帐户管理"),
|
"accountManage": MessageLookupByLibrary.simpleMessage("帐户管理"),
|
||||||
"accountRegisteredServers": MessageLookupByLibrary.simpleMessage("已注册服务器"),
|
"accountRegisteredServers":
|
||||||
|
MessageLookupByLibrary.simpleMessage("已注册服务器"),
|
||||||
"accountRemoveServerAndUsers": MessageLookupByLibrary.simpleMessage(
|
"accountRemoveServerAndUsers": MessageLookupByLibrary.simpleMessage(
|
||||||
"删除服务器和用户",
|
"删除服务器和用户",
|
||||||
),
|
),
|
||||||
|
|
@ -60,7 +61,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"accountRemoveServerAndUsersTail": MessageLookupByLibrary.simpleMessage(
|
"accountRemoveServerAndUsersTail": MessageLookupByLibrary.simpleMessage(
|
||||||
" 以及该应用程序中所有用户的登录信息。",
|
" 以及该应用程序中所有用户的登录信息。",
|
||||||
),
|
),
|
||||||
"accountRemoveUserLogin": MessageLookupByLibrary.simpleMessage("删除用户登录"),
|
"accountRemoveUserLogin":
|
||||||
|
MessageLookupByLibrary.simpleMessage("删除用户登录"),
|
||||||
"accountRemoveUserLoginHead": MessageLookupByLibrary.simpleMessage(
|
"accountRemoveUserLoginHead": MessageLookupByLibrary.simpleMessage(
|
||||||
"这将删除用户 ",
|
"这将删除用户 ",
|
||||||
),
|
),
|
||||||
|
|
@ -72,11 +74,15 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"accountUsersCount": m1,
|
"accountUsersCount": m1,
|
||||||
"appSettings": MessageLookupByLibrary.simpleMessage("应用设置"),
|
"appSettings": MessageLookupByLibrary.simpleMessage("应用设置"),
|
||||||
"appearance": MessageLookupByLibrary.simpleMessage("外观"),
|
"appearance": MessageLookupByLibrary.simpleMessage("外观"),
|
||||||
"autoSleepTimerSettings": MessageLookupByLibrary.simpleMessage("自动睡眠定时器设置"),
|
"autoSleepTimerSettings":
|
||||||
"autoTurnOnSleepTimer": MessageLookupByLibrary.simpleMessage("自动开启睡眠定时器"),
|
MessageLookupByLibrary.simpleMessage("自动睡眠定时器设置"),
|
||||||
|
"autoTurnOnSleepTimer":
|
||||||
|
MessageLookupByLibrary.simpleMessage("自动开启睡眠定时器"),
|
||||||
"autoTurnOnTimer": MessageLookupByLibrary.simpleMessage("自动开启定时器"),
|
"autoTurnOnTimer": MessageLookupByLibrary.simpleMessage("自动开启定时器"),
|
||||||
"autoTurnOnTimerAlways": MessageLookupByLibrary.simpleMessage("始终自动开启定时器"),
|
"autoTurnOnTimerAlways":
|
||||||
"autoTurnOnTimerAlwaysDescription": MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage("始终自动开启定时器"),
|
||||||
|
"autoTurnOnTimerAlwaysDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"总是打开睡眠定时器",
|
"总是打开睡眠定时器",
|
||||||
),
|
),
|
||||||
"autoTurnOnTimerDescription": MessageLookupByLibrary.simpleMessage(
|
"autoTurnOnTimerDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
|
|
@ -112,7 +118,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"copyToClipboardDescription": MessageLookupByLibrary.simpleMessage(
|
"copyToClipboardDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"将应用程序设置复制到剪贴板",
|
"将应用程序设置复制到剪贴板",
|
||||||
),
|
),
|
||||||
"copyToClipboardToast": MessageLookupByLibrary.simpleMessage("设置已复制到剪贴板"),
|
"copyToClipboardToast":
|
||||||
|
MessageLookupByLibrary.simpleMessage("设置已复制到剪贴板"),
|
||||||
"delete": MessageLookupByLibrary.simpleMessage("删除"),
|
"delete": MessageLookupByLibrary.simpleMessage("删除"),
|
||||||
"deleteDialog": m2,
|
"deleteDialog": m2,
|
||||||
"deleted": m3,
|
"deleted": m3,
|
||||||
|
|
@ -122,11 +129,13 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"general": MessageLookupByLibrary.simpleMessage("通用"),
|
"general": MessageLookupByLibrary.simpleMessage("通用"),
|
||||||
"help": MessageLookupByLibrary.simpleMessage("Help"),
|
"help": MessageLookupByLibrary.simpleMessage("Help"),
|
||||||
"home": MessageLookupByLibrary.simpleMessage("首页"),
|
"home": MessageLookupByLibrary.simpleMessage("首页"),
|
||||||
"homeBookContinueListening": MessageLookupByLibrary.simpleMessage("继续收听"),
|
"homeBookContinueListening":
|
||||||
|
MessageLookupByLibrary.simpleMessage("继续收听"),
|
||||||
"homeBookContinueListeningDescription":
|
"homeBookContinueListeningDescription":
|
||||||
MessageLookupByLibrary.simpleMessage("继续收听书架上显示播放按钮"),
|
MessageLookupByLibrary.simpleMessage("继续收听书架上显示播放按钮"),
|
||||||
"homeBookContinueSeries": MessageLookupByLibrary.simpleMessage("继续系列"),
|
"homeBookContinueSeries": MessageLookupByLibrary.simpleMessage("继续系列"),
|
||||||
"homeBookContinueSeriesDescription": MessageLookupByLibrary.simpleMessage(
|
"homeBookContinueSeriesDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"继续系列书架上显示播放按钮",
|
"继续系列书架上显示播放按钮",
|
||||||
),
|
),
|
||||||
"homeBookDiscover": MessageLookupByLibrary.simpleMessage("发现"),
|
"homeBookDiscover": MessageLookupByLibrary.simpleMessage("发现"),
|
||||||
|
|
@ -148,7 +157,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
),
|
),
|
||||||
"homePageSettingsOtherShelvesDescription":
|
"homePageSettingsOtherShelvesDescription":
|
||||||
MessageLookupByLibrary.simpleMessage("显示所有剩余书架上所有书籍的播放按钮"),
|
MessageLookupByLibrary.simpleMessage("显示所有剩余书架上所有书籍的播放按钮"),
|
||||||
"homePageSettingsQuickPlay": MessageLookupByLibrary.simpleMessage("继续播放"),
|
"homePageSettingsQuickPlay":
|
||||||
|
MessageLookupByLibrary.simpleMessage("继续播放"),
|
||||||
"homeStartListening": MessageLookupByLibrary.simpleMessage("开始收听"),
|
"homeStartListening": MessageLookupByLibrary.simpleMessage("开始收听"),
|
||||||
"language": MessageLookupByLibrary.simpleMessage("语言"),
|
"language": MessageLookupByLibrary.simpleMessage("语言"),
|
||||||
"languageDescription": MessageLookupByLibrary.simpleMessage("语言切换"),
|
"languageDescription": MessageLookupByLibrary.simpleMessage("语言切换"),
|
||||||
|
|
@ -165,7 +175,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"loginOpenID": MessageLookupByLibrary.simpleMessage("OpenID"),
|
"loginOpenID": MessageLookupByLibrary.simpleMessage("OpenID"),
|
||||||
"loginPassword": MessageLookupByLibrary.simpleMessage("密码"),
|
"loginPassword": MessageLookupByLibrary.simpleMessage("密码"),
|
||||||
"loginServerClick": MessageLookupByLibrary.simpleMessage("单击此处"),
|
"loginServerClick": MessageLookupByLibrary.simpleMessage("单击此处"),
|
||||||
"loginServerConnected": MessageLookupByLibrary.simpleMessage("服务器已连接,请登录"),
|
"loginServerConnected":
|
||||||
|
MessageLookupByLibrary.simpleMessage("服务器已连接,请登录"),
|
||||||
"loginServerNo": MessageLookupByLibrary.simpleMessage("没有服务器? "),
|
"loginServerNo": MessageLookupByLibrary.simpleMessage("没有服务器? "),
|
||||||
"loginServerNoConnected": MessageLookupByLibrary.simpleMessage(
|
"loginServerNoConnected": MessageLookupByLibrary.simpleMessage(
|
||||||
"请输入您的AudiobookShelf服务器的URL",
|
"请输入您的AudiobookShelf服务器的URL",
|
||||||
|
|
@ -178,8 +189,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"logs": MessageLookupByLibrary.simpleMessage("日志"),
|
"logs": MessageLookupByLibrary.simpleMessage("日志"),
|
||||||
"nmpSettingsBackward": MessageLookupByLibrary.simpleMessage("快退间隔"),
|
"nmpSettingsBackward": MessageLookupByLibrary.simpleMessage("快退间隔"),
|
||||||
"nmpSettingsForward": MessageLookupByLibrary.simpleMessage("快进间隔"),
|
"nmpSettingsForward": MessageLookupByLibrary.simpleMessage("快进间隔"),
|
||||||
"nmpSettingsMediaControls": MessageLookupByLibrary.simpleMessage("媒体控制"),
|
"nmpSettingsMediaControls":
|
||||||
"nmpSettingsMediaControlsDescription": MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage("媒体控制"),
|
||||||
|
"nmpSettingsMediaControlsDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"选择要显示的媒体控件",
|
"选择要显示的媒体控件",
|
||||||
),
|
),
|
||||||
"nmpSettingsSelectOne": MessageLookupByLibrary.simpleMessage(
|
"nmpSettingsSelectOne": MessageLookupByLibrary.simpleMessage(
|
||||||
|
|
@ -200,8 +213,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
),
|
),
|
||||||
"no": MessageLookupByLibrary.simpleMessage("否"),
|
"no": MessageLookupByLibrary.simpleMessage("否"),
|
||||||
"notImplemented": MessageLookupByLibrary.simpleMessage("未实现"),
|
"notImplemented": MessageLookupByLibrary.simpleMessage("未实现"),
|
||||||
"notificationMediaPlayer": MessageLookupByLibrary.simpleMessage("通知媒体播放器"),
|
"notificationMediaPlayer":
|
||||||
"notificationMediaPlayerDescription": MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage("通知媒体播放器"),
|
||||||
|
"notificationMediaPlayerDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"在通知中自定义媒体播放器",
|
"在通知中自定义媒体播放器",
|
||||||
),
|
),
|
||||||
"ok": MessageLookupByLibrary.simpleMessage("确定"),
|
"ok": MessageLookupByLibrary.simpleMessage("确定"),
|
||||||
|
|
@ -223,7 +238,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
MessageLookupByLibrary.simpleMessage("显示章节进度"),
|
MessageLookupByLibrary.simpleMessage("显示章节进度"),
|
||||||
"playerSettingsDisplayChapterProgressDescription":
|
"playerSettingsDisplayChapterProgressDescription":
|
||||||
MessageLookupByLibrary.simpleMessage("在播放器中显示当前章节的进度"),
|
MessageLookupByLibrary.simpleMessage("在播放器中显示当前章节的进度"),
|
||||||
"playerSettingsDisplayTotalProgress": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsDisplayTotalProgress":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"显示总进度",
|
"显示总进度",
|
||||||
),
|
),
|
||||||
"playerSettingsDisplayTotalProgressDescription":
|
"playerSettingsDisplayTotalProgressDescription":
|
||||||
|
|
@ -246,7 +262,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
MessageLookupByLibrary.simpleMessage("不要报告本书前 "),
|
MessageLookupByLibrary.simpleMessage("不要报告本书前 "),
|
||||||
"playerSettingsPlaybackReportingMinimumDescriptionTail":
|
"playerSettingsPlaybackReportingMinimumDescriptionTail":
|
||||||
MessageLookupByLibrary.simpleMessage(" 的播放"),
|
MessageLookupByLibrary.simpleMessage(" 的播放"),
|
||||||
"playerSettingsRememberForEveryBook": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsRememberForEveryBook":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"记住每本书的播放器设置",
|
"记住每本书的播放器设置",
|
||||||
),
|
),
|
||||||
"playerSettingsRememberForEveryBookDescription":
|
"playerSettingsRememberForEveryBookDescription":
|
||||||
|
|
@ -258,15 +275,18 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"playerSettingsSpeedOptions": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedOptions": MessageLookupByLibrary.simpleMessage(
|
||||||
"播放速度选项",
|
"播放速度选项",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptionsSelect": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedOptionsSelect":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"播放速度选项",
|
"播放速度选项",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptionsSelectAdd": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedOptionsSelectAdd":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"添加一个速度选项",
|
"添加一个速度选项",
|
||||||
),
|
),
|
||||||
"playerSettingsSpeedOptionsSelectAddHelper":
|
"playerSettingsSpeedOptionsSelectAddHelper":
|
||||||
MessageLookupByLibrary.simpleMessage("输入一个新的速度选项"),
|
MessageLookupByLibrary.simpleMessage("输入一个新的速度选项"),
|
||||||
"playerSettingsSpeedSelect": MessageLookupByLibrary.simpleMessage("选择播放速度"),
|
"playerSettingsSpeedSelect":
|
||||||
|
MessageLookupByLibrary.simpleMessage("选择播放速度"),
|
||||||
"playerSettingsSpeedSelectHelper": MessageLookupByLibrary.simpleMessage(
|
"playerSettingsSpeedSelectHelper": MessageLookupByLibrary.simpleMessage(
|
||||||
"输入默认的播放速度",
|
"输入默认的播放速度",
|
||||||
),
|
),
|
||||||
|
|
@ -287,8 +307,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"restoreBackupHint": MessageLookupByLibrary.simpleMessage("将备份粘贴到此处"),
|
"restoreBackupHint": MessageLookupByLibrary.simpleMessage("将备份粘贴到此处"),
|
||||||
"restoreBackupInvalid": MessageLookupByLibrary.simpleMessage("无效备份"),
|
"restoreBackupInvalid": MessageLookupByLibrary.simpleMessage("无效备份"),
|
||||||
"restoreBackupSuccess": MessageLookupByLibrary.simpleMessage("设置已恢复"),
|
"restoreBackupSuccess": MessageLookupByLibrary.simpleMessage("设置已恢复"),
|
||||||
"restoreBackupValidator": MessageLookupByLibrary.simpleMessage("请将备份粘贴到此处"),
|
"restoreBackupValidator":
|
||||||
"restoreDescription": MessageLookupByLibrary.simpleMessage("从备份中还原应用程序设置"),
|
MessageLookupByLibrary.simpleMessage("请将备份粘贴到此处"),
|
||||||
|
"restoreDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage("从备份中还原应用程序设置"),
|
||||||
"resume": MessageLookupByLibrary.simpleMessage("继续"),
|
"resume": MessageLookupByLibrary.simpleMessage("继续"),
|
||||||
"retry": MessageLookupByLibrary.simpleMessage("重试"),
|
"retry": MessageLookupByLibrary.simpleMessage("重试"),
|
||||||
"settings": MessageLookupByLibrary.simpleMessage("设置"),
|
"settings": MessageLookupByLibrary.simpleMessage("设置"),
|
||||||
|
|
@ -296,8 +318,10 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"shakeActionDescription": MessageLookupByLibrary.simpleMessage(
|
"shakeActionDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"检测到抖动时要执行的操作",
|
"检测到抖动时要执行的操作",
|
||||||
),
|
),
|
||||||
"shakeActivationThreshold": MessageLookupByLibrary.simpleMessage("抖动激活阈值"),
|
"shakeActivationThreshold":
|
||||||
"shakeActivationThresholdDescription": MessageLookupByLibrary.simpleMessage(
|
MessageLookupByLibrary.simpleMessage("抖动激活阈值"),
|
||||||
|
"shakeActivationThresholdDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"门槛越高,你就越难摇晃",
|
"门槛越高,你就越难摇晃",
|
||||||
),
|
),
|
||||||
"shakeDetector": MessageLookupByLibrary.simpleMessage("抖动检测器"),
|
"shakeDetector": MessageLookupByLibrary.simpleMessage("抖动检测器"),
|
||||||
|
|
@ -308,7 +332,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"shakeDetectorEnableDescription": MessageLookupByLibrary.simpleMessage(
|
"shakeDetectorEnableDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"启用抖动检测以执行各种操作",
|
"启用抖动检测以执行各种操作",
|
||||||
),
|
),
|
||||||
"shakeDetectorSettings": MessageLookupByLibrary.simpleMessage("抖动检测器设置"),
|
"shakeDetectorSettings":
|
||||||
|
MessageLookupByLibrary.simpleMessage("抖动检测器设置"),
|
||||||
"shakeFeedback": MessageLookupByLibrary.simpleMessage("抖动反馈"),
|
"shakeFeedback": MessageLookupByLibrary.simpleMessage("抖动反馈"),
|
||||||
"shakeFeedbackDescription": MessageLookupByLibrary.simpleMessage(
|
"shakeFeedbackDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"检测到抖动时给出的反馈",
|
"检测到抖动时给出的反馈",
|
||||||
|
|
@ -323,18 +348,21 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"themeMode": MessageLookupByLibrary.simpleMessage("主题模式"),
|
"themeMode": MessageLookupByLibrary.simpleMessage("主题模式"),
|
||||||
"themeModeDark": MessageLookupByLibrary.simpleMessage("深色"),
|
"themeModeDark": MessageLookupByLibrary.simpleMessage("深色"),
|
||||||
"themeModeHighContrast": MessageLookupByLibrary.simpleMessage("高对比度模式"),
|
"themeModeHighContrast": MessageLookupByLibrary.simpleMessage("高对比度模式"),
|
||||||
"themeModeHighContrastDescription": MessageLookupByLibrary.simpleMessage(
|
"themeModeHighContrastDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"增加背景和文本之间的对比度",
|
"增加背景和文本之间的对比度",
|
||||||
),
|
),
|
||||||
"themeModeLight": MessageLookupByLibrary.simpleMessage("浅色"),
|
"themeModeLight": MessageLookupByLibrary.simpleMessage("浅色"),
|
||||||
"themeModeSystem": MessageLookupByLibrary.simpleMessage("跟随系统"),
|
"themeModeSystem": MessageLookupByLibrary.simpleMessage("跟随系统"),
|
||||||
"themeSettings": MessageLookupByLibrary.simpleMessage("主题设置"),
|
"themeSettings": MessageLookupByLibrary.simpleMessage("主题设置"),
|
||||||
"themeSettingsColors": MessageLookupByLibrary.simpleMessage("主题色"),
|
"themeSettingsColors": MessageLookupByLibrary.simpleMessage("主题色"),
|
||||||
"themeSettingsColorsAndroid": MessageLookupByLibrary.simpleMessage("主题色"),
|
"themeSettingsColorsAndroid":
|
||||||
|
MessageLookupByLibrary.simpleMessage("主题色"),
|
||||||
"themeSettingsColorsBook": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColorsBook": MessageLookupByLibrary.simpleMessage(
|
||||||
"书籍详情页自适应主题",
|
"书籍详情页自适应主题",
|
||||||
),
|
),
|
||||||
"themeSettingsColorsBookDescription": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColorsBookDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage(
|
||||||
"以牺牲一些性能为代价,对书籍详情页的颜色进行美化",
|
"以牺牲一些性能为代价,对书籍详情页的颜色进行美化",
|
||||||
),
|
),
|
||||||
"themeSettingsColorsCurrent": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColorsCurrent": MessageLookupByLibrary.simpleMessage(
|
||||||
|
|
@ -345,7 +373,8 @@ class MessageLookup extends MessageLookupByLibrary {
|
||||||
"themeSettingsColorsDescription": MessageLookupByLibrary.simpleMessage(
|
"themeSettingsColorsDescription": MessageLookupByLibrary.simpleMessage(
|
||||||
"使用应用程序的系统主题色",
|
"使用应用程序的系统主题色",
|
||||||
),
|
),
|
||||||
"themeSettingsDescription": MessageLookupByLibrary.simpleMessage("自定义应用主题"),
|
"themeSettingsDescription":
|
||||||
|
MessageLookupByLibrary.simpleMessage("自定义应用主题"),
|
||||||
"timeSecond": m7,
|
"timeSecond": m7,
|
||||||
"unknown": MessageLookupByLibrary.simpleMessage("未知"),
|
"unknown": MessageLookupByLibrary.simpleMessage("未知"),
|
||||||
"webVersion": MessageLookupByLibrary.simpleMessage("Web版本"),
|
"webVersion": MessageLookupByLibrary.simpleMessage("Web版本"),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue