From 6d19ffeb80643083fc20b8bbf520489f66feb118 Mon Sep 17 00:00:00 2001 From: HapeLee <1321903405@qq.com> Date: Mon, 22 Sep 2025 20:00:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=BF=E6=8D=A2=E4=B8=80=E4=BA=9B=E7=A1=AC?= =?UTF-8?q?=E7=BC=96=E7=A0=81=E7=9A=84=E6=96=87=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/res/layout/activity_book_search.xml | 20 +- app/src/main/res/layout/activity_manga.xml | 13 +- .../main/res/layout/activity_read_record.xml | 2 +- app/src/main/res/layout/activity_welcome.xml | 4 +- .../res/layout/dialog_bookshelf_config.xml | 4 +- app/src/main/res/layout/dialog_dict.xml | 2 +- .../res/layout/dialog_download_choice.xml | 4 +- .../main/res/layout/dialog_font_select.xml | 2 +- .../res/layout/dialog_manga_auto_read.xml | 2 +- .../res/layout/dialog_manga_color_filter.xml | 5 +- .../layout/dialog_manga_footer_setting.xml | 8 +- app/src/main/res/layout/dialog_photo_view.xml | 2 +- app/src/main/res/layout/dialog_read_aloud.xml | 2 +- .../res/layout/dialog_read_book_style.xml | 4 +- .../main/res/layout/dialog_read_padding.xml | 2 +- app/src/main/res/layout/dialog_text_view.xml | 2 +- app/src/main/res/layout/dialog_tip_config.xml | 2 +- .../res/layout/dialog_tool_button_config.xml | 2 +- app/src/main/res/layout/dialog_update.xml | 8 +- app/src/main/res/layout/fragment_bookmark.xml | 18 +- .../main/res/layout/fragment_webdav_auth.xml | 2 +- .../main/res/layout/item_book_manga_edge.xml | 4 +- .../main/res/layout/item_book_manga_page.xml | 4 +- app/src/main/res/layout/item_http_tts.xml | 15 +- app/src/main/res/layout/item_search.xml | 2 +- app/src/main/res/layout/item_theme_card.xml | 1 - app/src/main/res/layout/item_tool_button.xml | 2 +- .../main/res/layout/view_detail_seek_bar.xml | 2 +- app/src/main/res/layout/view_search_menu.xml | 4 +- app/src/main/res/layout/view_theme_mode.xml | 6 +- app/src/main/res/menu/book_read.xml | 2 +- app/src/main/res/menu/theme_list.xml | 3 +- app/src/main/res/values-zh/strings.xml | 61 ++++-- app/src/main/res/values/strings.xml | 175 ++++++++++-------- 34 files changed, 205 insertions(+), 186 deletions(-) diff --git a/app/src/main/res/layout/activity_book_search.xml b/app/src/main/res/layout/activity_book_search.xml index ef42e3c19..0ae0bd0a4 100644 --- a/app/src/main/res/layout/activity_book_search.xml +++ b/app/src/main/res/layout/activity_book_search.xml @@ -58,7 +58,7 @@ android:layout_height="wrap_content" android:paddingHorizontal="4dp" android:paddingVertical="2dp" - android:text="进度" + android:text="@string/progress" android:textColor="?attr/colorTertiary" android:textSize="10sp" android:textStyle="bold" @@ -67,27 +67,15 @@ - - - - - - + android:visibility="visible"/> + android:visibility="visible"> - - - diff --git a/app/src/main/res/layout/activity_read_record.xml b/app/src/main/res/layout/activity_read_record.xml index fe4515bdd..219c613b8 100644 --- a/app/src/main/res/layout/activity_read_record.xml +++ b/app/src/main/res/layout/activity_read_record.xml @@ -50,7 +50,7 @@ android:layout_height="wrap_content" style="@style/Widget.Material3Expressive.Button.TonalButton" app:icon="@drawable/ic_clear_all" - android:text="清除所有" + android:text="@string/clear_all" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toBottomOf="@id/tv_reading_time" /> diff --git a/app/src/main/res/layout/activity_welcome.xml b/app/src/main/res/layout/activity_welcome.xml index e0352757d..a7734d5a8 100644 --- a/app/src/main/res/layout/activity_welcome.xml +++ b/app/src/main/res/layout/activity_welcome.xml @@ -28,7 +28,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginHorizontal="16dp" - android:text="欢迎!" + android:text="@string/welcome_title" android:textSize="36sp" android:textStyle="bold" /> @@ -40,7 +40,7 @@ android:layout_marginHorizontal="16dp" android:layout_marginTop="8dp" android:layout_marginBottom="16dp" - android:text="请先阅读应用的服务条款与用户协议。" + android:text="@string/first_read" android:textStyle="bold" /> + android:text="@string/compact_grid" /> + android:text="@string/cover_grid" /> diff --git a/app/src/main/res/layout/dialog_download_choice.xml b/app/src/main/res/layout/dialog_download_choice.xml index 13df7176b..320fed617 100644 --- a/app/src/main/res/layout/dialog_download_choice.xml +++ b/app/src/main/res/layout/dialog_download_choice.xml @@ -19,7 +19,7 @@ android:id="@+id/edit_start" android:layout_width="match_parent" android:layout_height="wrap_content" - android:hint="起始章" + android:hint="@string/start_chapter" android:inputType="number" /> @@ -39,7 +39,7 @@ android:id="@+id/edit_end" android:layout_width="match_parent" android:layout_height="wrap_content" - android:hint="结束章" + android:hint="@string/end_chapter" android:inputType="number" /> diff --git a/app/src/main/res/layout/dialog_font_select.xml b/app/src/main/res/layout/dialog_font_select.xml index 98df2f9ab..04dff367b 100644 --- a/app/src/main/res/layout/dialog_font_select.xml +++ b/app/src/main/res/layout/dialog_font_select.xml @@ -72,7 +72,7 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" - android:text="无" + android:text="0" android:textStyle="bold" /> diff --git a/app/src/main/res/layout/dialog_manga_color_filter.xml b/app/src/main/res/layout/dialog_manga_color_filter.xml index a143602c4..843322207 100644 --- a/app/src/main/res/layout/dialog_manga_color_filter.xml +++ b/app/src/main/res/layout/dialog_manga_color_filter.xml @@ -56,7 +56,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:checkable="true" - android:text="跟随系统" /> + android:text="@string/flow_sys" /> + android:text="@string/enable_manga_gray" /> diff --git a/app/src/main/res/layout/dialog_manga_footer_setting.xml b/app/src/main/res/layout/dialog_manga_footer_setting.xml index 751e48de0..13002abce 100644 --- a/app/src/main/res/layout/dialog_manga_footer_setting.xml +++ b/app/src/main/res/layout/dialog_manga_footer_setting.xml @@ -28,7 +28,7 @@ android:id="@+id/bottom_sheet_title" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="漫画设置" + android:text="@string/manga_setting" android:textSize="18sp" android:textStyle="bold" /> @@ -39,7 +39,7 @@ android:layout_height="wrap_content" android:paddingHorizontal="16dp" android:paddingVertical="8dp" - android:text="阅读模式" + android:text="@string/read_type" android:textStyle="bold" /> + android:text="@string/epi_3" /> diff --git a/app/src/main/res/layout/dialog_read_aloud.xml b/app/src/main/res/layout/dialog_read_aloud.xml index 80cd2cd63..cd086e076 100644 --- a/app/src/main/res/layout/dialog_read_aloud.xml +++ b/app/src/main/res/layout/dialog_read_aloud.xml @@ -26,7 +26,7 @@ android:id="@+id/bottom_sheet_title" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="朗读设置" + android:text="@string/aloud_config" android:textSize="18sp" android:textStyle="bold" /> diff --git a/app/src/main/res/layout/dialog_read_book_style.xml b/app/src/main/res/layout/dialog_read_book_style.xml index 09580e0ec..71d05b5a9 100644 --- a/app/src/main/res/layout/dialog_read_book_style.xml +++ b/app/src/main/res/layout/dialog_read_book_style.xml @@ -38,7 +38,7 @@ app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" - android:text="界面设置" + android:text="@string/read_config" android:textSize="18sp" android:textStyle="bold" /> @@ -79,7 +79,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="3" - android:text="字体与间距" + android:text="@string/text_and_padding" app:icon="@drawable/ic_cfg_txt" tool:ignore="SmallSp" /> diff --git a/app/src/main/res/layout/dialog_read_padding.xml b/app/src/main/res/layout/dialog_read_padding.xml index 7d6511b41..28d723245 100644 --- a/app/src/main/res/layout/dialog_read_padding.xml +++ b/app/src/main/res/layout/dialog_read_padding.xml @@ -15,7 +15,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" - android:text="界面设置" + android:text="@string/padding" android:textSize="18sp" android:textStyle="bold" /> diff --git a/app/src/main/res/layout/dialog_text_view.xml b/app/src/main/res/layout/dialog_text_view.xml index 7a6b6b014..335a8560a 100644 --- a/app/src/main/res/layout/dialog_text_view.xml +++ b/app/src/main/res/layout/dialog_text_view.xml @@ -21,7 +21,7 @@ android:id="@+id/bottom_sheet_title" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="帮助" + android:text="@string/help" android:textSize="18sp" android:textStyle="bold" /> diff --git a/app/src/main/res/layout/dialog_tip_config.xml b/app/src/main/res/layout/dialog_tip_config.xml index afb6e6ae5..51bdb115e 100644 --- a/app/src/main/res/layout/dialog_tip_config.xml +++ b/app/src/main/res/layout/dialog_tip_config.xml @@ -28,7 +28,7 @@ android:id="@+id/bottom_sheet_title" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="界面设置" + android:text="@string/read_config" android:textSize="18sp" android:textStyle="bold" /> diff --git a/app/src/main/res/layout/dialog_tool_button_config.xml b/app/src/main/res/layout/dialog_tool_button_config.xml index 5d350af9a..1dbc9fbe2 100644 --- a/app/src/main/res/layout/dialog_tool_button_config.xml +++ b/app/src/main/res/layout/dialog_tool_button_config.xml @@ -23,7 +23,7 @@ android:id="@+id/bottom_sheet_title" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="配置底部按钮" + android:text="@string/config_btn" android:textSize="18sp" android:textStyle="bold" /> diff --git a/app/src/main/res/layout/dialog_update.xml b/app/src/main/res/layout/dialog_update.xml index 69cf01d49..fd4967c31 100644 --- a/app/src/main/res/layout/dialog_update.xml +++ b/app/src/main/res/layout/dialog_update.xml @@ -28,7 +28,7 @@ android:id="@+id/bottom_sheet_title" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="检测到更新!" + android:text="@string/update_available" android:textSize="20sp" android:textStyle="bold" /> @@ -79,7 +79,7 @@ android:paddingVertical="2dp" android:textSize="12sp" android:textStyle="bold" - android:text="ABI: arm64-v8a" + android:text="@string/abi_arm64_v8a" android:textAppearance="?attr/textAppearanceBodySmall" android:textColor="?attr/colorOnSurfaceVariant" /> @@ -134,7 +134,7 @@ android:id="@+id/tv_url" android:layout_width="match_parent" android:layout_height="wrap_content" - android:text="下载链接" + android:text="@string/download_link" android:autoLink="web" android:textAppearance="?attr/textAppearanceBodySmall" android:textColor="?attr/colorPrimary" @@ -145,7 +145,7 @@ android:layout_height="wrap_content" android:textStyle="bold" android:textSize="14sp" - android:text="更新日志"/> + android:text="@string/update_log"/> - - - - - - + app:layout_constraintTop_toTopOf="parent"/> \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_webdav_auth.xml b/app/src/main/res/layout/fragment_webdav_auth.xml index 11b96b49d..9acd523e3 100644 --- a/app/src/main/res/layout/fragment_webdav_auth.xml +++ b/app/src/main/res/layout/fragment_webdav_auth.xml @@ -67,7 +67,7 @@ style="@style/Widget.Material3Expressive.Button.OutlinedButton" android:layout_width="match_parent" android:layout_height="wrap_content" - android:text="获取备份" + android:text="@string/restore" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" diff --git a/app/src/main/res/layout/item_book_manga_edge.xml b/app/src/main/res/layout/item_book_manga_edge.xml index 54c6ba73a..1544b8b17 100644 --- a/app/src/main/res/layout/item_book_manga_edge.xml +++ b/app/src/main/res/layout/item_book_manga_edge.xml @@ -16,7 +16,7 @@ android:autoSizePresetSizes="12sp" android:autoSizeStepGranularity="2dp" android:autoSizeTextType="uniform" - android:text="已读完" + android:text="@string/read_end" android:textColor="@color/white" android:textStyle="bold" /> @@ -29,7 +29,7 @@ android:autoSizePresetSizes="22sp" android:autoSizeStepGranularity="2dp" android:autoSizeTextType="uniform" - android:text="下一章123" + android:text="" android:textColor="@color/white" android:textSize="22sp" android:textStyle="bold" /> diff --git a/app/src/main/res/layout/item_book_manga_page.xml b/app/src/main/res/layout/item_book_manga_page.xml index 7f9ae43af..c19562324 100644 --- a/app/src/main/res/layout/item_book_manga_page.xml +++ b/app/src/main/res/layout/item_book_manga_page.xml @@ -37,7 +37,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" - android:text="重新加载" + android:text="@string/load_error_retry" android:textSize="18sp" android:textColor="?attr/colorSurfaceVariant" app:backgroundTint="?attr/colorOnSurface" @@ -53,7 +53,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" - android:text="0%" + android:text="" android:textColor="?attr/colorSurfaceVariant" android:visibility="gone" tools:visibility="visible" /> diff --git a/app/src/main/res/layout/item_http_tts.xml b/app/src/main/res/layout/item_http_tts.xml index 647e046b4..e32858475 100644 --- a/app/src/main/res/layout/item_http_tts.xml +++ b/app/src/main/res/layout/item_http_tts.xml @@ -29,15 +29,18 @@ + android:paddingVertical="4dp" + android:paddingHorizontal="8dp" + android:text="@string/system_engine" + android:textSize="12sp" + android:textStyle="bold"/> diff --git a/app/src/main/res/layout/item_tool_button.xml b/app/src/main/res/layout/item_tool_button.xml index f1f287be0..a26640c73 100644 --- a/app/src/main/res/layout/item_tool_button.xml +++ b/app/src/main/res/layout/item_tool_button.xml @@ -23,7 +23,7 @@ android:layout_height="wrap_content" android:layout_marginStart="12dp" android:layout_weight="1" - android:text="按钮名称" + android:text="" android:textColor="?attr/colorOnSurface" android:textSize="16sp" /> diff --git a/app/src/main/res/layout/view_detail_seek_bar.xml b/app/src/main/res/layout/view_detail_seek_bar.xml index 033e91214..3b7c43cf3 100644 --- a/app/src/main/res/layout/view_detail_seek_bar.xml +++ b/app/src/main/res/layout/view_detail_seek_bar.xml @@ -41,7 +41,7 @@ android:paddingHorizontal="12dp" android:paddingVertical="4dp" android:singleLine="true" - android:text="0" /> + android:text="" /> diff --git a/app/src/main/res/layout/view_search_menu.xml b/app/src/main/res/layout/view_search_menu.xml index 8e533309a..05275e767 100644 --- a/app/src/main/res/layout/view_search_menu.xml +++ b/app/src/main/res/layout/view_search_menu.xml @@ -20,7 +20,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="16dp" - android:contentDescription="上个结果" + android:contentDescription="上一结果" android:rotation="180" android:src="@drawable/ic_arrow_right" android:tooltipText="@string/search_content" @@ -37,7 +37,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="16dp" - android:contentDescription="下个结果" + android:contentDescription="下一结果" android:src="@drawable/ic_arrow_right" android:tooltipText="@string/search_content" app:elevation="2dp" diff --git a/app/src/main/res/layout/view_theme_mode.xml b/app/src/main/res/layout/view_theme_mode.xml index aee5936bf..76eeef398 100644 --- a/app/src/main/res/layout/view_theme_mode.xml +++ b/app/src/main/res/layout/view_theme_mode.xml @@ -19,7 +19,7 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" - android:text="跟随系统" /> + android:text="@string/flow_sys" /> + android:text="@string/light_mode" /> + android:text="@string/dark_mode" /> diff --git a/app/src/main/res/menu/book_read.xml b/app/src/main/res/menu/book_read.xml index 6e89e9aca..a47ff0482 100644 --- a/app/src/main/res/menu/book_read.xml +++ b/app/src/main/res/menu/book_read.xml @@ -46,7 +46,7 @@ \ No newline at end of file diff --git a/app/src/main/res/values-zh/strings.xml b/app/src/main/res/values-zh/strings.xml index 33b8d32c6..e049a75a6 100644 --- a/app/src/main/res/values-zh/strings.xml +++ b/app/src/main/res/values-zh/strings.xml @@ -232,7 +232,7 @@ 已在书架 开始阅读 加载数据中… - 加载失败,点击重试 + 加载失败 内容简介 简介:%s 简介:暂无简介 @@ -245,7 +245,7 @@ 按更新时间 按书名 手动排序 - 阅读方式 + 阅读模式 排版 删除所选 是否确认删除? @@ -757,7 +757,7 @@ 默认封面 恢复忽略列表 选择恢复忽略内容 - 阅读界面设置 + 界面设置 分组名称 备注内容 默认启用替换净化 @@ -1169,11 +1169,11 @@ 继续滑动以加载下一章… 启用绘制优化 阅读需要请求后台权限以保持服务正常运行 - 模拟追读 - 开关 - 开始日期 - 日更章数 - 起始章节 + Simulated Reading + Switch + Start from + Daily Chapters + Start Chapter 检查更新查找版本 检查更新时查找其他签名版本 当前 @@ -1181,7 +1181,7 @@ 测试版 共存版 流式播放音频 - 边下边播,网络不好时播放会断断续续,仅TTS源有效 + 即边下边播,网络不好时播放会断断续续,仅TTS源有效 来电期间暂停朗读 在通话期间暂停朗读,需要读取手机状态权限 阅读需要读取手机状态实现来电期间暂停朗读功能 @@ -1194,13 +1194,13 @@ 禁用点击翻页 开启自动翻页 翻页速度 %s - 开启自动滚动 + 开启滚动 页脚配置 设置自动翻页速度 - 页数. %1$d/%2$d 章节. %3$d/%4$d -> %5$s%% - 下载之后章节 - 下载全部章节 - 章节显示设置 + 页数. %1$d/%2$d 章节. %3$d/%4$d -> %5$s%% + Download the chapter after + Download all chapter + 《章节和文案》隐藏 章节 章节 章节名称 @@ -1215,7 +1215,7 @@ 居中 水平滚动 滤镜 - 隐藏章节过渡界面 + 隐藏漫画列表标题 刷新发现 未分组 动态取色 @@ -1224,23 +1224,48 @@ 更多设置 共 %d 章 已读 %d 章 - 墨水屏 墨水屏设置 阈值 禁用水平滚动动画 - 开启图片灰色 + 灰度 排列视图 列表 网格 + 每行列数 + 升序 降序 - 检查更新中… + 检查更新中... 没有内容哦 匿名统计 + 允许应用使用Google Firebase进行崩溃和性能统计 定位至当前 填充刘海区域 系统媒体控件兼容性更改 当锁屏不显示系统媒体控件时可以尝试开启,比如 OneUI 7.0或 OriginOS 等 朗读暂停/继续 + 播放模式 平板界面 + 进度 + 清除所有 + 欢迎! + 请先阅读应用的服务条款与用户协议。 + 配置底部按钮 + 紧凑网格 + 封面网格 + 结束章 + 漫画阅读设置 + 条漫 + 第三话 + 图片 + 字体与间距 + 检测到更新! + ABI: arm64-v8a + 下载链接 + 暂无书签 + 已读完 + 系统引擎 + 剪切板导入 + 浅色 + 深色 diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 1879b9dbe..e79c90877 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -230,7 +230,7 @@ Import selected book(s) Number of concurrent tasks Change icon - Remove + In bookshelf Start reading Loading… Load failed, tap to retry @@ -1168,84 +1168,105 @@ Capture heap dump N/B/L Keep swiping to load the next chapter… - 启用绘制优化 - 阅读需要请求后台权限以保持服务正常运行 + Enable Render Optimization + Reading requires requesting background permission to keep the service running properly Simulated Reading Switch - Start from + Start From Daily Chapters Start Chapter - 检查更新查找版本 - 检查更新时查找其他签名版本 - 当前 - 正式版 - 测试版 - 共存版 - 流式播放音频 - 即边下边播,网络不好时播放会断断续续,仅TTS源有效 - 来电期间暂停朗读 - 在通话期间暂停朗读,需要读取手机状态权限 - 阅读需要读取手机状态实现来电期间暂停朗读功能 - 耳机按键启动朗读 - 通过耳机按键来启动朗读 - 显示重复书源 - 主题配置 - 漫画浏览 - 禁用漫画缩放 - 禁用点击翻页 - 开启自动翻页 - 翻页速度 %s - 开启滚动 - 页脚配置 - 设置自动翻页速度 - 页数. %1$d/%2$d 章节. %3$d/%4$d -> %5$s%% - Download the chapter after - Download all chapter - 《章节和文案》隐藏 - 《章节.》文案 - 章节 - 章节名称 - 《页数和文案》隐藏 - 《页数.》文案 - 页数 - 《总进度和文案》隐藏 - 《总进度.》文案 - 总进度 - 页脚 - 靠左 - 居中 - 水平滚动 - 滤镜 - 隐藏漫画列表标题 - 刷新发现 - 未分组 - 动态取色 - 图标已修改 - 配置替换规则 - 更多设置 - 共 %d 章 - 已读 %d 章 - - 墨水屏 - 墨水屏设置 - 阈值 - 禁用水平滚动动画 - 开启图片灰色 - 排列视图 - 列表 - 网格 - 每行列数 - 升序 - 降序 - 检查更新中... - 没有内容哦 - 匿名统计 - 允许应用使用Google Firebase进行崩溃和性能统计 - 定位至当前 - 填充刘海区域 - 系统媒体控件兼容性更改 - 当锁屏不显示系统媒体控件时可以尝试开启,比如 OneUI 7.0或 OriginOS 等 - 朗读暂停/继续 - 播放模式 - 平板界面 + Check Updates for Variants + Look for other signature variants when checking for updates + Current + Official + Beta + Coexist Version + Stream Audio Playback + Play while downloading; may stutter on poor networks. Works only with TTS source + Pause Reading Aloud During Calls + Pause reading aloud during calls, requires phone state permission + Reading requires phone state access to pause reading aloud during calls + Start Read Aloud via Headset Button + Use headset button to start reading aloud + Show Duplicate Sources + Theme Configuration + Manga Viewer + Disable Manga Zoom + Disable Tap to Turn Page + Enable Auto Page Flip + Page Flip Speed %s + Enable Auto Scroll + Footer Configuration + Set Auto Page Flip Speed + Page. %1$d/%2$d Chapter. %3$d/%4$d -> %5$s%% + Download Chapter After + Download All Chapters + “Chapter and Text” Hidden + Chapter + Chapter + Chapter Name + “Page Count and Text” Hidden + Page + Page + “Total Progress and Text” Hidden + Progress + Progress + Footer + Left + Center + Horizontal Scroll + Filter + Hide Manga List Titles + Refresh Explore + Ungrouped + Dynamic Colors + Icon Updated + Configure Replace Rules + More Settings + Total %d Chapters + Read %d Chapters + E-ink Screen + E-ink Settings + Threshold + Disable Horizontal Scroll Animation + Grayscale + Sort View + List + Grid + Rows per Line + Ascending + Descending + Checking for Updates… + No content available + Anonymous Statistics + Allow the app to use Google Firebase for crash and performance reports + Locate Current + Fill Display Cutouts + System Media Control Compatibility + Enable if system media controls are missing on lock screen (e.g. OneUI 7.0, OriginOS) + Pause/Resume Reading Aloud + Play Mode + Tablet Interface + Progress + Clear All + Welcome! + Please read the Terms of Service and User Agreement first. + Configure Bottom Buttons + Compact Grid + Cover Grid + End Chapter + Manga Reading Settings + Webtoon + Ep-3 + Photo + Font & Spacing + Update Available! + ABI: arm64-v8a + Download Link + No Bookmarks + Finished Reading + System Engine + Import from Clipboard + Light + Dark