6.4.0 Pre - 新增 barcode/qrcode/shizuku 等模块; 适配高版本系统语言设置; 优化打包功能; 支持应用快捷方式; 修复屏幕旋转相关问题

This commit is contained in:
SuperMonster003
2023-10-25 14:15:44 +08:00
parent 5ee2f62d89
commit 4b64922a0b
194 changed files with 2723 additions and 1497 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -6,7 +6,7 @@
android:viewportWidth="128">
<path
android:fillColor="#46483E"
android:fillColor="#DE46483E"
android:pathData="M64,14c-27.6,0-50,22.4-50,50s22.4,50,50,50s50-22.4,50-50S91.6,14,64,14z"/>
<path
android:fillColor="#81CF08"

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -25,7 +25,6 @@
<org.autojs.autojs.ui.explorer.ExplorerView
android:id="@+id/script_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fafafa" />
android:layout_height="match_parent" />
</LinearLayout>

View File

@@ -0,0 +1,118 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?selectableItemBackground"
android:gravity="center_vertical"
android:layout_gravity="center"
android:paddingVertical="16dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/launcher_shortcut_settings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="3"
android:orientation="vertical"
android:clickable="true"
android:focusable="true">
<ImageView
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_gravity="center"
android:layout_marginVertical="2dp"
android:clickable="false"
android:focusable="false"
android:src="@mipmap/ic_app_shortcut_settings_adaptive" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
android:ellipsize="end"
android:gravity="center"
android:layout_gravity="center|bottom"
android:layout_marginTop="6dp"
android:textColor="@color/day_night"
android:clickable="false"
android:focusable="false"
android:text="@string/text_app_shortcut_settings_short_label" />
</LinearLayout>
<LinearLayout
android:id="@+id/launcher_shortcut_docs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
android:orientation="vertical"
android:clickable="true"
android:focusable="true">
<ImageView
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_gravity="center"
android:layout_marginVertical="2dp"
android:clickable="false"
android:focusable="false"
android:src="@mipmap/ic_app_shortcut_docs_adaptive" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
android:ellipsize="end"
android:gravity="center"
android:layout_gravity="center|bottom"
android:layout_marginTop="6dp"
android:textColor="@color/day_night"
android:clickable="false"
android:focusable="false"
android:text="@string/text_app_shortcut_docs_short_label" />
</LinearLayout>
<LinearLayout
android:id="@+id/launcher_shortcut_log"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="3"
android:orientation="vertical"
android:clickable="true"
android:focusable="true">
<ImageView
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_gravity="center"
android:layout_marginVertical="2dp"
android:clickable="false"
android:focusable="false"
android:src="@mipmap/ic_app_shortcut_log_adaptive" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
android:ellipsize="end"
android:gravity="center"
android:layout_gravity="center|bottom"
android:layout_marginTop="6dp"
android:textColor="@color/day_night"
android:clickable="false"
android:focusable="false"
android:text="@string/text_app_shortcut_log_short_label" />
</LinearLayout>
</LinearLayout>
</LinearLayout>

View File

@@ -1,25 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:id="@+id/widget"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/icon"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:src="@drawable/ic_node_js_black"/>
android:id="@+id/icon"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:src="@drawable/ic_node_js_black" />
<TextView
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:gravity="center"
android:maxLines="1"
android:textColor="@android:color/white"
android:textSize="12sp"/>
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:gravity="center"
android:layout_gravity="top"
android:maxLines="2"
android:ellipsize="middle"
android:textColor="@android:color/white"
android:textSize="12sp" />
</LinearLayout>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_app_shortcut_docs_adaptive_background"/>
<foreground android:drawable="@mipmap/ic_app_shortcut_docs_adaptive_foreground"/>
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_app_shortcut_docs_adaptive_background"/>
<foreground android:drawable="@mipmap/ic_app_shortcut_docs_adaptive_foreground"/>
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_app_shortcut_log_adaptive_background"/>
<foreground android:drawable="@mipmap/ic_app_shortcut_log_adaptive_foreground"/>
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_app_shortcut_log_adaptive_background"/>
<foreground android:drawable="@mipmap/ic_app_shortcut_log_adaptive_foreground"/>
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_app_shortcut_settings_adaptive_background"/>
<foreground android:drawable="@mipmap/ic_app_shortcut_settings_adaptive_foreground"/>
</adaptive-icon>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_app_shortcut_settings_adaptive_background"/>
<foreground android:drawable="@mipmap/ic_app_shortcut_settings_adaptive_foreground"/>
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1 @@
unqualifiedResLocale=en-US

View File

@@ -26,7 +26,6 @@
<string name="description_change_working_dir_preference">قم بتغيير مسار الدليل الذي يحتوي على البرامج النصية</string>
<string name="description_check_for_updates_preference">يحصل AutoJs6 على التحديثات وتنزيلها من GitHub.\n\nملاحظة: لا يوفر التحديث دعمًا متعدد اللغات حتى الآن.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">يوفر درجة توافق اسم فئة Java لإصدارات 4.x من خلال إعادة تعيين اسم الفئة.\nعند تشغيل هذا الخيار ، سيكون هناك درجة متفاوتة من تأخير بدء التشغيل (عشرات إلى مئات المللي ثانية) في كل مرة يبدأ فيها البرنامج النصي.\nيوصى بإيقاف تشغيل الخيار في جميع الأوقات إذا لم يكن مطلوبًا على وجه التحديد.</string>
<string name="description_documentation_launcher_icon_preference">تسهل أيقونة مشغل الوثائق الوصول إلى المستندات ويمكن تبديلها مثل تطبيق مستقل.</string>
<string name="description_documentation_source_preference">المستندات المحلية: باستخدام ملفات AutoJs6 المضمنة كمصادر توثيق ، لا يلزم الاتصال بالشبكة. يتغير المحتوى مع تحديث AutoJs6.\nالمستندات عبر الإنترنت: استخدام صفحات GitHub كمصادر توثيق تتطلب اتصالاً بالشبكة. المحتوى دائما محدث.\n\nملاحظة: لزيادة تجربة قراءة المستندات عبر الإنترنت إلى الحد الأقصى ، يوصى باستخدام جهاز عرض بشاشة عريضة مثل شاشة سطح المكتب.\nملاحظة: اعتبارًا من الإصدار 6.2.0 ، لا تزال الوثائق في المراحل الأولية من التطوير ، ومعظم المحتوى لم تتم كتابته أو تحديثه بعد.</string>
<string name="description_documentation_source_preference_more">يجب استيفاء الشروط التالية لدعم النسق الداكن على صفحات المستند:\n1. تم تمكين الوضع الليلي AutoJs6\n2.عرض ويب نظام Android (أو متصفحات مثل Google Chrome):\n- Android API المستوى 29 (Android 10) [Q] وما فوق: الإصدار> = 76\n- مستوى واجهة برمجة تطبيقات Android 28 (Android 9) [P] وما دون: الإصدار> = 105</string>
<string name="description_extending_js_build_in_objects">يمكن أن يؤدي توسيع كائنات JavaScript المضمنة إلى زيادة مرونة التعليمات البرمجية وتمكين وظائف أكثر ثراءً ، ولكن يمكن أن يتسبب في حدوث تعارضات وحتى حدوث تعطل.\nتحتوي جميع البرامج النصية على امتدادات مضمنة يتم تمكينها افتراضيًا عند تشغيل الخيار.\nغالبًا ما تكون الامتدادات المضمنة غير آمنة ، ولا يوصى بها ما لم يتم فهم مبادئ ومخاطر الإضافات المضمنة بوضوح.\nعند إيقاف تشغيل الخيار ، لا يزال من الممكن تمكين الامتدادات المضمنة من خلال الكائن العام للمكونات الإضافية ، كما هو موضح في وثائق المشروع.</string>
@@ -59,12 +58,11 @@
<string name="dialog_button_system_settings_simplified">النظام</string>
<string name="dialog_button_update_now">تحديث</string>
<string name="dialog_button_use_default">استخدم الافتراضي</string>
<string name="docs_app_name">AutoJs6 توثيق</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 توثيق</string>
<string name="text_app_shortcut_docs_short_label">توثيق</string>
<string name="edit_and_run_handle_intent_error">لا يمكن معالجة الملف</string>
<string name="edit_exit_without_save_warn">لم يتم حفظ المحتوى ، هل أنت متأكد من الخروج؟</string>
<string name="entry_app_language_auto">اتبع النظام</string>
<string name="entry_documentation_launcher_icon_hide">إخفاء الرمز من المشغل</string>
<string name="entry_documentation_launcher_icon_show">إظهار الرمز في المشغل</string>
<string name="entry_documentation_source_local">مستندات محلية</string>
<string name="entry_documentation_source_online">مستندات عبر الإنترنت</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">تغيير حجم النص</string>
@@ -345,7 +343,6 @@
<string name="text_do_not_ask_again_for_this_version">لا تسأل مرة أخرى عن هذا الإصدار</string>
<string name="text_do_not_show_again">لا تظهر مرة أخرى</string>
<string name="text_documentation">وثائق</string>
<string name="text_documentation_launcher_icon">رمز مشغل الوثائق</string>
<string name="text_documentation_source">مصدر الوثائق</string>
<string name="text_done">فعله</string>
<string name="text_download">تحميل</string>
@@ -460,6 +457,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">فحص التصميم ...</string>
<string name="text_licenses">تراخيص المصادر المفتوحة</string>
<string name="text_log">سجل</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 سجل</string>
<string name="text_app_shortcut_log_short_label">سجل</string>
<string name="text_logging_in">تسجيل الدخول</string>
<string name="text_login">تسجيل الدخول</string>
<string name="text_login_succeed">نجح تسجيل الدخول</string>
@@ -623,6 +622,8 @@
<string name="text_set_as_working_dir">تعيين كدليل العمل</string>
<string name="text_set_breakpoint">ضبط نقطة توقف</string>
<string name="text_settings">إعدادات</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 إعدادات</string>
<string name="text_app_shortcut_settings_short_label">إعدادات</string>
<string name="text_should_not_be_empty">النص لا يمكن أن يكون فارغًا</string>
<string name="text_show_layout_bounds">عرض في حدود التصميم</string>
<string name="text_show_layout_hierarchy">عرض في التسلسل الهرمي للتخطيط</string>
@@ -679,19 +680,24 @@
<string name="text_write_secure_settings_description">إعدادات النظام الآمنة ، التي تحتوي على تفضيلات النظام التي يمكن أن تقرأها التطبيقات ولكن لا يُسمح لها بالكتابة.\nهذه هي لتفضيلات يجب على المستخدم تعديلها بشكل صريح من خلال واجهة المستخدم لتطبيق النظام.\nمع إذن إعدادات النظام الآمن ، يمكن للتطبيقات العادية تعديل الإعدادات الآمنة مباشرة (مثل خدمة إمكانية الوصول).</string>
<string name="text_write_system_settings">كتابة إعدادات النظام</string>
<string name="theme_color_default">تقصير</string>
<string name="text_only_latest_few_items_will_be_sent">仅最新的 %d 个条目将被发送</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">当前日志总条目数 %d 超出可发送限制</string>
<string name="text_failed_to_send_log_entries">日志条目发送失败</string>
<string name="text_no_log_entries_to_send">无可发送的日志条目</string>
<string name="text_no_log_entries_to_export">无可导出的日志条目</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条目</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">已复制到剪贴板 (仅最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">日志条目导出失败</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_only_latest_few_items_will_be_sent">سيتم إرسال أحدث %d من العناصر فقط</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">عدد إدخالات السجل %d يتجاوز حد الإرسال</string>
<string name="text_failed_to_send_log_entries">فشل في إرسال إدخالات السجل</string>
<string name="text_no_log_entries_to_send">لا توجد إدخالات سجل لإرسالها</string>
<string name="text_no_log_entries_to_export">لا توجد إدخالات سجل للتصدير</string>
<string name="text_no_log_entries_to_copy">لا توجد إدخالات سجل لنسخها</string>
<string name="text_failed_to_copy">فشل النسخ</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">تم النسخ بالفعل إلى الحافظة (فقط أحدث %d عنصر)</string>
<string name="text_failed_to_export_log_entries">فشل تصدير إدخالات السجل</string>
<string name="dialog_button_dismiss">رفض</string>
<string name="dialog_button_view_file">استعراض الملف</string>
<string name="text_exported">تصدير</string>
<string name="text_some_items_exported">تم تصدير %d من العناصر</string>
<string name="text_app_shortcut_disabled">تم تعطيل هذا الاختصار</string>
<string name="text_launcher_shortcuts">اختصارات المشغل</string>
<string name="description_launcher_shortcuts">يمكن للاختصارات تنفيذ إجراءات محددة في AutoJs6. يمكن للمستخدمين عرض هذه الاختصارات في مشغل مدعوم وبدء بعض المهام أو تشغيل نشاط بسرعة، مثل قراءة وثائق تطبيق AutoJs6، وتشغيل صفحة إعدادات AutoJs6، وما إلى ذلك.</string>
<string name="summary_text_launcher_shortcuts">أضف اختصارات إلى المشغل</string>
<string name="text_pin_shortcut_not_unsupported">تثبيت الاختصارات على المشغل غير مدعوم</string>
<plurals name="text_items_total_sum">
<item quantity="one">المجموع: عنصر واحد</item>

View File

@@ -24,7 +24,6 @@
<string name="description_change_working_dir_preference">Change the path of the directory containing scripts</string>
<string name="description_check_for_updates_preference">AutoJs6 gets and downloads updates from GitHub.\n\nNote: The update does not provide multilingual support yet.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">Provides a degree of Java class name compatibility for 4.x versions through class name remapping.\nWith this option turned on, there will be a varying degree of startup delay (tens to hundreds of milliseconds) each time the script is started.\nIt is recommended to keep the option off at all times if not specifically required.</string>
<string name="description_documentation_launcher_icon_preference">A documentation launcher icon makes it easier to access the docs and can be switched like a stand-alone application.</string>
<string name="description_documentation_source_preference">Local docs: Using AutoJs6 build-in files as documentation sources, no network connection required. The content changes as AutoJs6 is updated.\nOnline docs: Using GitHub pages as documentation sources, requiring network connection. The content is always up to date.\n\nNote: To maximize the reading experience of online documents, it is recommended to use a widescreen display device such as a desktop monitor.\nNote: As of version 6.2.0, the documentation is still in the preliminary stages of development, and most of the content has not yet been written or updated.</string>
<string name="description_documentation_source_preference_more">The following conditions must be met for dark theme support on document pages:\n1. AutoJs6 has night mode enabled\n2. Android System WebView (or browsers like Google Chrome):\n- Android API Level 29 (Android 10) [Q] and above: version >= 76\n- Android API Level 28 (Android 9) [P] and below: version >= 105</string>
<string name="description_extending_js_build_in_objects">Extending JavaScript built-in objects can increase code flexibility and enable richer functionality, but can cause conflicts and even breakage.\nAll scripts have built-in extensions enabled by default when the option is turned on.\nBuilt-in extensions are often insecure, and are not recommended unless the principles and risks of built-in extensions are clearly understood.\nWhen the option is turned off, built-in extensions can still be enabled through the plugins global object, as described in the project documentation.</string>
@@ -57,12 +56,11 @@
<string name="dialog_button_system_settings_simplified">System</string>
<string name="dialog_button_update_now">Update</string>
<string name="dialog_button_use_default">Use default</string>
<string name="docs_app_name">AutoJs6 Docs</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 Docs</string>
<string name="text_app_shortcut_docs_short_label">Docs</string>
<string name="edit_and_run_handle_intent_error">Can\'t process file</string>
<string name="edit_exit_without_save_warn">The content has not been saved, are you sure to exit?</string>
<string name="entry_app_language_auto">Follow system</string>
<string name="entry_documentation_launcher_icon_hide">Hide icon from launcher</string>
<string name="entry_documentation_launcher_icon_show">Show icon in launcher</string>
<string name="entry_documentation_source_local">Local docs</string>
<string name="entry_documentation_source_online">Online docs</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">Change text size</string>
@@ -343,7 +341,6 @@
<string name="text_do_not_ask_again_for_this_version">Dont ask again for this version</string>
<string name="text_do_not_show_again">Don\'t show again</string>
<string name="text_documentation">Documents</string>
<string name="text_documentation_launcher_icon">Documentation launcher icon</string>
<string name="text_documentation_source">Documentation source</string>
<string name="text_done">Done</string>
<string name="text_download">Download</string>
@@ -458,6 +455,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">Inspecting layout...</string>
<string name="text_licenses">Open Sources Licenses</string>
<string name="text_log">Log</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 Log</string>
<string name="text_app_shortcut_log_short_label">Log</string>
<string name="text_logging_in">Logging in</string>
<string name="text_login">Login</string>
<string name="text_login_succeed">Login succeeded</string>
@@ -621,6 +620,8 @@
<string name="text_set_as_working_dir">Set as working dir</string>
<string name="text_set_breakpoint">Set a breakpoint</string>
<string name="text_settings">Settings</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 Settings</string>
<string name="text_app_shortcut_settings_short_label">Settings</string>
<string name="text_should_not_be_empty">Text can\'t be empty</string>
<string name="text_show_layout_bounds">View in layout bounds</string>
<string name="text_show_layout_hierarchy">View in layout hierarchy</string>
@@ -677,19 +678,24 @@
<string name="text_write_secure_settings_description">Secure system settings, containing system preferences that applications can read but are not allowed to write.\nThese are for preferences that the user must explicitly modify through the UI of a system app.\nWith secure system settings permission, normal applications can directly modify the secure settings (such as accessibility service).</string>
<string name="text_write_system_settings">Write system settings</string>
<string name="theme_color_default">Default</string>
<string name="text_only_latest_few_items_will_be_sent">仅最新的 %d 个条目将被发送</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">当前日志总条目数 %d 超出可发送限制</string>
<string name="text_failed_to_send_log_entries">日志条目发送失败</string>
<string name="text_no_log_entries_to_send">无可发送的日志条目</string>
<string name="text_no_log_entries_to_export">无可导出的日志条目</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条目</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">已复制到剪贴板 (仅最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">日志条目导出失败</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_only_latest_few_items_will_be_sent">Only latest %d items will be sent</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">Number of log entries %d exceeds the limit for sending</string>
<string name="text_failed_to_send_log_entries">Failed to send log entries</string>
<string name="text_no_log_entries_to_send">No log entries to send</string>
<string name="text_no_log_entries_to_export">No log entries to export</string>
<string name="text_no_log_entries_to_copy">No log entries to copy</string>
<string name="text_failed_to_copy">Failed to copy</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">Already copied to clipboard (only latest %d items)</string>
<string name="text_failed_to_export_log_entries">Failed to export log entries</string>
<string name="dialog_button_dismiss">Dismiss</string>
<string name="dialog_button_view_file">View File</string>
<string name="text_exported">Exported</string>
<string name="text_some_items_exported">%d items exported</string>
<string name="text_app_shortcut_disabled">This shortcut is disabled</string>
<string name="text_launcher_shortcuts">Launcher shortcuts</string>
<string name="description_launcher_shortcuts">Shortcuts can perform specific actions in AutoJs6. Users can display these shortcuts in a supported launcher and quickly start some tasks or launch an activity, such as reading AutoJs6 application documentation, launching AutoJs6 settings page, and so on.</string>
<string name="summary_text_launcher_shortcuts">Add shortcuts to launcher</string>
<string name="text_pin_shortcut_not_unsupported">Pinning shortcuts to launcher is not supported</string>
<plurals name="text_items_total_sum">
<item quantity="one">Total: %d item</item>

View File

@@ -26,7 +26,6 @@
<string name="description_change_working_dir_preference">Cambiar la ruta del directorio que contiene los scripts</string>
<string name="description_check_for_updates_preference">AutoJs6 obtiene y descarga las actualizaciones de GitHub.\n\nNota: La actualización aún no ofrece soporte multilingüe.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">Proporciona un grado de compatibilidad de nombres de clase Java para las versiones 4.x a través de la reasignación de nombres de clase.\nCon esta opción activada, habrá un grado variable de retraso en el inicio (de decenas a cientos de milisegundos) cada vez que se inicie el script.\nSe recomienda mantener la opción desactivada en todo momento si no se requiere específicamente.</string>
<string name="description_documentation_launcher_icon_preference">Un icono lanzador de documentación facilita el acceso a los documentos y puede conmutarse como una aplicación independiente.</string>
<string name="description_documentation_source_preference">Documentos locales: Utiliza los archivos incorporados de AutoJs6 como fuentes de documentación, sin necesidad de conexión a la red. El contenido cambia a medida que se actualiza AutoJs6.\nDocumentación en línea: Utilizando las páginas de GitHub como fuentes de documentación, se requiere conexión a la red. El contenido está siempre actualizado.\n\nNota: Para maximizar la experiencia de lectura de los documentos en línea, se recomienda utilizar un dispositivo de pantalla ancha, como un monitor de escritorio.\nNota: A partir de la versión 6.2.0, la documentación se encuentra todavía en las fases preliminares de desarrollo, y la mayor parte del contenido aún no ha sido escrito o actualizado.</string>
<string name="description_documentation_source_preference_more">Para que el tema oscuro sea compatible con las páginas de los documentos, deben cumplirse las siguientes condiciones\n1. AutoJs6 tiene activado el modo nocturno\n2. Sistema Android WebView (o navegadores como Google Chrome):\n- Android API Level 29 (Android 10) [Q] y superior: versión >= 76\n- Android API Level 28 (Android 9) [P] e inferiores: versión >= 105</string>
<string name="description_extending_js_build_in_objects">La ampliación de los objetos incorporados de JavaScript puede aumentar la flexibilidad del código y permitir una funcionalidad más rica, pero puede causar conflictos e incluso roturas.\nTodos los scripts tienen las extensiones incorporadas habilitadas por defecto cuando la opción está activada.\nLas extensiones incorporadas suelen ser inseguras y no se recomiendan a menos que se comprendan claramente los principios y riesgos de las extensiones incorporadas.\nCuando la opción está desactivada, las extensiones incorporadas aún pueden ser habilitadas a través del objeto global plugins, como se describe en la documentación del proyecto.</string>
@@ -59,12 +58,11 @@
<string name="dialog_button_system_settings_simplified">Sistema</string>
<string name="dialog_button_update_now">Actualizar</string>
<string name="dialog_button_use_default">Usar por defecto</string>
<string name="docs_app_name">AutoJs6 Docs</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 Docs</string>
<string name="text_app_shortcut_docs_short_label">Docs</string>
<string name="edit_and_run_handle_intent_error">No se puede procesar el archivo</string>
<string name="edit_exit_without_save_warn">El contenido no se ha guardado, ¿está seguro de salir?</string>
<string name="entry_app_language_auto">Siga el sistema</string>
<string name="entry_documentation_launcher_icon_hide">Ocultar icono del lanzador</string>
<string name="entry_documentation_launcher_icon_show">Mostrar icono en el lanzador</string>
<string name="entry_documentation_source_local">Documentos locales</string>
<string name="entry_documentation_source_online">Documentos en línea</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">Tamaño del texto</string>
@@ -345,7 +343,6 @@
<string name="text_do_not_ask_again_for_this_version">No volver a pedir esta versión</string>
<string name="text_do_not_show_again">No volver a mostrar</string>
<string name="text_documentation">Documentos</string>
<string name="text_documentation_launcher_icon">Icono del lanzador de documentación</string>
<string name="text_documentation_source">Fuente de la documentación</string>
<string name="text_done">Hecho</string>
<string name="text_download">Descargar</string>
@@ -460,6 +457,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">Inspeccionando el diseño...</string>
<string name="text_licenses">Licencias de fuentes abiertas</string>
<string name="text_log">Registrar</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 Registrar</string>
<string name="text_app_shortcut_log_short_label">Registrar</string>
<string name="text_logging_in">Iniciar sesión</string>
<string name="text_login">Inicio de sesión</string>
<string name="text_login_succeed">Inicio de sesión exitoso</string>
@@ -623,6 +622,8 @@
<string name="text_set_as_working_dir">Como directorio de trabajo</string>
<string name="text_set_breakpoint">Establecer un punto de interrupción</string>
<string name="text_settings">Configuración</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 Configuración</string>
<string name="text_app_shortcut_settings_short_label">Configuración</string>
<string name="text_should_not_be_empty">El texto no puede estar vacío</string>
<string name="text_show_layout_bounds">Vista en los límites del diseño</string>
<string name="text_show_layout_hierarchy">Vista en la jerarquía del diseño</string>
@@ -679,27 +680,34 @@
<string name="text_write_secure_settings_description">Ajustes de seguridad del sistema, que contienen preferencias del sistema que las aplicaciones pueden leer pero no pueden escribir.\nSe trata de preferencias que el usuario debe modificar explícitamente a través de la interfaz de usuario de una aplicación del sistema.\nCon el permiso de configuración segura del sistema, las aplicaciones normales pueden modificar directamente la configuración segura (como el servicio de accesibilidad).</string>
<string name="text_write_system_settings">Escribir la configuración del sistema</string>
<string name="theme_color_default">Por defecto</string>
<string name="text_only_latest_few_items_will_be_sent">仅最新的 %d 个条目将被发送</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">当前日志总条目数 %d 超出可发送限制</string>
<string name="text_failed_to_send_log_entries">日志条目发送失败</string>
<string name="text_no_log_entries_to_send">无可发送的日志条目</string>
<string name="text_no_log_entries_to_export">无可导出的日志条目</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条目</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">已复制到剪贴板 (仅最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">日志条目导出失败</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_only_latest_few_items_will_be_sent">Sólo se enviarán los últimos %d elementos</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">El número de entradas de registro %d supera el límite de envío</string>
<string name="text_failed_to_send_log_entries">Error al enviar entradas de registro</string>
<string name="text_no_log_entries_to_send">No hay entradas de registro para enviar</string>
<string name="text_no_log_entries_to_export">No hay entradas de registro para exportar</string>
<string name="text_no_log_entries_to_copy">No hay entradas de registro para copiar</string>
<string name="text_failed_to_copy">Error al copiar</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">Ya se ha copiado en el portapapeles (sólo los últimos %d elementos)</string>
<string name="text_failed_to_export_log_entries">Error al exportar entradas de registro</string>
<string name="dialog_button_dismiss">Descartar</string>
<string name="dialog_button_view_file">Ver archivo</string>
<string name="text_exported">Exportado</string>
<string name="text_some_items_exported">%d elementos exportados</string>
<string name="text_app_shortcut_disabled">Este acceso directo está desactivado</string>
<string name="text_launcher_shortcuts">Atajos del lanzador</string>
<string name="description_launcher_shortcuts">Los accesos directos pueden realizar acciones específicas en AutoJs6. Los usuarios pueden mostrar estos accesos directos en un lanzador compatible e iniciar rápidamente algunas tareas o iniciar una actividad, como leer la documentación de la aplicación AutoJs6, iniciar la página de configuración de AutoJs6, etc.</string>
<string name="summary_text_launcher_shortcuts">Añadir accesos directos al lanzador</string>
<string name="text_pin_shortcut_not_unsupported">No es posible anclar accesos directos al lanzador.</string>
<plurals name="text_items_total_sum">
<item quantity="one">Total: %d artículo</item>
<item quantity="many">Total: %d artículos</item>
<item quantity="other">Total: %d artículos</item>
</plurals>
<plurals name="text_already_stop_n_scripts">
<item quantity="one">%d script detenido</item>
<item quantity="many">%d scripts detenidos</item>
<item quantity="other">%d scripts detenidos</item>
</plurals>

View File

@@ -26,7 +26,6 @@
<string name="description_change_working_dir_preference">Changer le chemin du répertoire contenant les scripts</string>.
<string name="description_check_for_updates_preference">AutoJs6 obtient et télécharge les mises à jour depuis GitHub.\n\nNote: La mise à jour ne fournit pas encore de support multilingue.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">Assure un certain degré de compatibilité des noms de classe Java pour les versions 4.x grâce au remappage des noms de classe.\nSi cette option est activée, il y aura un délai de démarrage plus ou moins long (de quelques dizaines à quelques centaines de millisecondes) à chaque fois que le script sera lancé.\nIl est recommandé de laisser l\'option désactivée à tout moment si elle n\'est pas spécifiquement requise.</string>
<string name="description_documentation_launcher_icon_preference">Une icône de lancement de la documentation facilite l\'accès aux documents et peut être commutée comme une application autonome.</string>
<string name="description_documentation_source_preference">Documentation locale: Utilisation des fichiers intégrés d\'AutoJs6 comme sources de documentation, aucune connexion réseau n\'est nécessaire. Le contenu change au fur et à mesure que AutoJs6 est mis à jour.\nDocumentation en ligne: Utilisation des pages GitHub comme sources de documentation, nécessitant une connexion réseau. Le contenu est toujours à jour.\n\nRemarque: pour optimiser l\'expérience de lecture des documents en ligne, il est recommandé d\'utiliser un dispositif d\'affichage grand écran tel qu\'un moniteur de bureau.\nRemarque: à partir de la version 6.2.0, la documentation est encore dans les phases préliminaires de développement, et la plupart du contenu n\'a pas encore été écrit ou mis à jour.</string>
<string name="description_documentation_source_preference_more">Les conditions suivantes doivent être remplies pour la prise en charge du thème sombre sur les pages de la documentation :\n1. Le mode nuit d\'AutoJs6 est activé\n2. WebView du système Android (ou des navigateurs comme Google Chrome) :\n- Android API Level 29 (Android 10) [Q] et supérieur: version >= 76\n- Android API Niveau 28 (Android 9) [P] et inférieur: version >= 105</string>
<string name="description_extending_js_build_in_objects">L\'extension des objets JavaScript intégrés peut augmenter la flexibilité du code et permettre des fonctionnalités plus riches, mais elle peut provoquer des conflits et même des pannes.\nTous les scripts ont des extensions intégrées activées par défaut lorsque l\'option est activée.\nLes extensions intégrées sont souvent peu sûres et ne sont pas recommandées, sauf si les principes et les risques des extensions intégrées sont clairement compris.\nLorsque l\'option est désactivée, les extensions intégrées peuvent toujours être activées via l\'objet global plugins, comme décrit dans la documentation du projet.</string>
@@ -59,12 +58,11 @@
<string name="dialog_button_system_settings_simplified">Système</string>
<string name="dialog_button_update_now">Mise à jour</string>
<string name="dialog_button_use_default">Par défaut</string>
<string name="docs_app_name">AutoJs6 Docs</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 Docs</string>
<string name="text_app_shortcut_docs_short_label">Docs</string>
<string name="edit_and_run_handle_intent_error">Can\'t process file</string>
<string name="edit_exit_without_save_warn">Le contenu n\'a pas été enregistré, êtes-vous sûr de vouloir quitter?</string>
<string name="entry_app_language_auto">Suivre le système</string>
<string name="entry_documentation_launcher_icon_hide">Masquer l\'icône du lanceur</string>
<string name="entry_documentation_launcher_icon_show">Afficher l\'icône dans le lanceur</string>
<string name="entry_documentation_source_local">Documents locaux</string>
<string name="entry_documentation_source_online">Documents en ligne</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">Taille du texte</string>
@@ -345,7 +343,6 @@
<string name="text_do_not_ask_again_for_this_version">Ne pas redemander cette version</string>
<string name="text_do_not_show_again">Ne pas montrer à nouveau</string>
<string name="text_documentation">Documents</string>
<string name="text_documentation_launcher_icon">Icône du lanceur de documentation</string>
<string name="text_documentation_source">Source de la documentation</string>
<string name="text_done">Done</string>
<string name="text_download">Téléchargement</string>
@@ -460,6 +457,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">Inspecter la mise en page...</string>
<string name="text_licenses">Licences Open Sources</string>
<string name="text_log">Journal</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 Journal</string>
<string name="text_app_shortcut_log_short_label">Journal</string>
<string name="text_logging_in">Logging in</string>
<string name="text_login">Login</string>
<string name="text_login_succeed">Login réussi</string>
@@ -623,6 +622,8 @@
<string name="text_set_as_working_dir">Comme répertoire de travail</string>
<string name="text_set_breakpoint">Définir un point d\'arrêt</string>
<string name="text_settings">Réglages</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 Réglages</string>
<string name="text_app_shortcut_settings_short_label">Réglages</string>
<string name="text_should_not_be_empty">Le texte ne peut pas être vide</string>
<string name="text_show_layout_bounds">Afficher les bords de la disposition</string>
<string name="text_show_layout_hierarchy">Afficher la hiérarchie de la disposition</string>
@@ -679,27 +680,34 @@
<string name="text_write_secure_settings_description">Paramètres de sécurité du système, contenant les préférences du système que les applications peuvent lire mais ne sont pas autorisées à écrire.\nIl s\'agit des préférences que l\'utilisateur doit explicitement modifier par le biais de l\'interface utilisateur d\'une application système.\nAvec l\'autorisation de paramètres de sécurité du système, les applications normales peuvent directement modifier les paramètres de sécurité (comme le service d\'accessibilité).</string>
<string name="text_write_system_settings">Écrire les paramètres système</string>
<string name="theme_color_default">Default</string>
<string name="text_only_latest_few_items_will_be_sent">仅最新的 %d 个条目将被发送</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">当前日志总条目数 %d 超出可发送限制</string>
<string name="text_failed_to_send_log_entries">日志条目发送失败</string>
<string name="text_no_log_entries_to_send">无可发送的日志条目</string>
<string name="text_no_log_entries_to_export">无可导出的日志条目</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条目</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">已复制到剪贴板 (仅最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">日志条目导出失败</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_only_latest_few_items_will_be_sent">Seuls les derniers %d éléments seront envoyés</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">Le nombre d\'entrées de journal %d dépasse la limite d\'envoi</string>
<string name="text_failed_to_send_log_entries">Échec de l\'envoi des entrées de journal</string>
<string name="text_no_log_entries_to_send">Aucune entrée de journal à envoyer</string>
<string name="text_no_log_entries_to_export">Aucune entrée de journal à exporter</string>
<string name="text_no_log_entries_to_copy">Aucune entrée de journal à copier</string>
<string name="text_failed_to_copy">Échec de la copie</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">Déjà copié dans le presse-papiers (seulement les derniers %d éléments)</string>
<string name="text_failed_to_export_log_entries">Échec de l\'exportation des entrées de journal</string>
<string name="dialog_button_dismiss">Quitter</string>
<string name="dialog_button_view_file">Voir le fichier</string>
<string name="text_exported">Exporté</string>
<string name="text_some_items_exported">%d items exported</string>
<string name="text_app_shortcut_disabled">Ce raccourci est désactivé</string>
<string name="text_launcher_shortcuts">Raccourcis du lanceur</string>
<string name="description_launcher_shortcuts">Les raccourcis permettent d\'effectuer des actions spécifiques dans AutoJs6. Les utilisateurs peuvent afficher ces raccourcis dans un lanceur pris en charge et démarrer rapidement certaines tâches ou lancer une activité, comme la lecture de la documentation de l\'application AutoJs6, le lancement de la page de configuration d\'AutoJs6, etc.</string>
<string name="summary_text_launcher_shortcuts">Ajouter des raccourcis au lanceur</string>
<string name="text_pin_shortcut_not_unsupported">L\'épinglage de raccourcis dans le lanceur n\'est pas pris en charge</string>
<plurals name="text_items_total_sum">
<item quantity="one">Total: %d article</item>
<item quantity="many">Total: %d articles</item>
<item quantity="other">Total: %d articles</item>
</plurals>
<plurals name="text_already_stop_n_scripts">
<item quantity="one">%d script arrêté</item>
<item quantity="many">%d scripts arrêtés</item>
<item quantity="other">%d scripts arrêtés</item>
</plurals>

View File

@@ -26,7 +26,6 @@
<string name="description_change_working_dir_preference">スクリプトを含むディレクトリのパスを変更する</string>
<string name="description_check_for_updates_preference">AutoJs6 は、GitHub からアップデートを取得し、ダウンロードします.\n\n注: このアップデートでは、まだ多言語サポートは提供されていません</string>
<string name="description_compatibility_with_classes_for_ver_4_x">クラス名のリマッピングにより、4.x バージョンの Java クラス名の互換性をある程度確保します.\nこのオプションをオンにすると、スクリプトを起動するたびにさまざまな程度 (数十から数百ミリ秒) の起動遅延が発生するようになる.\n特に必要でない場合は、このオプションを常にオフにしておくことをお勧めします</string>
<string name="description_documentation_launcher_icon_preference">ドキュメントランチャーアイコンは、ドキュメントへのアクセスを容易にし、スタンドアロンアプリケーションのように切り替えることができます</string>
<string name="description_documentation_source_preference">ローカルドキュメント AutoJs6 に組み込まれたファイルをドキュメントソースとして使用するため、ネットワーク接続は必要ありません. AutoJs6 が更新されると内容も変わります.\nオンライン・ドキュメント. GitHub のページをドキュメントソースとして使用し、ネットワーク接続が必要です. コンテンツは常に最新の状態に保たれます.\n\n注: オンラインドキュメントを最大限に活用するために、デスクトップモニターなどのワイドスクリーンディスプレイを使用することをお勧めします.\n注意: バージョン 6.2.0 時点では、ドキュメントはまだ開発の初期段階にあり、ほとんどのコンテンツはまだ執筆・更新されていません</string>
<string name="description_documentation_source_preference_more">ドキュメントページでダークテーマをサポートするには、以下の条件を満たす必要があります.\n1. AutoJs6 でナイトモードが有効になっている\n2. Android System WebView (または Google Chrome などのブラウザ) .\n- Android API Level 29 (Android 10) [Q] 以上: バージョン >= 76\n- Android API Level 28 (Android 9) [P] 以下: バージョン >= 105</string>
<string name="description_extending_js_build_in_objects">JavaScript の組み込みオブジェクトを拡張すると、コードの柔軟性が増し、より豊かな機能を実現できますが、衝突や破損を引き起こす可能性もあります.\nこのオプションをオンにすると、すべてのスクリプトはデフォルトで組み込みの拡張機能を有効にします.\n組み込みの拡張機能は安全でないことが多いので、組み込みの拡張機能の原理とリスクが明確に理解されていない限り、推奨されません.\nこのオプションをオフにした場合でも、プロジェクトのドキュメントで説明されているように、plugins グローバルオブジェクトを使用して組み込み拡張機能を有効にすることができます</string>
@@ -59,12 +58,11 @@
<string name="dialog_button_system_settings_simplified">システム</string>
<string name="dialog_button_update_now">更新</string>
<string name="dialog_button_use_default">デフォルトを使用</string>
<string name="docs_app_name">AutoJs6 文書</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 文書</string>
<string name="text_app_shortcut_docs_short_label">文書</string>
<string name="edit_and_run_handle_intent_error">ファイルを処理できません</string>
<string name="edit_exit_without_save_warn">内容が保存されていませんので、本当に終了しますか?</string>
<string name="entry_app_language_auto">システムに従ってください</string>
<string name="entry_documentation_launcher_icon_hide">ランチャーからアイコンを隠す</string>
<string name="entry_documentation_launcher_icon_show">ランチャーにアイコンを表示する</string>
<string name="entry_documentation_source_local">ローカルドキュメント</string>
<string name="entry_documentation_source_online">オンラインドキュメント</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">文字サイズ</string>
@@ -345,7 +343,6 @@
<string name="text_do_not_ask_again_for_this_version">このバージョンでは再表示を要求しない</string>
<string name="text_do_not_show_again">再表示禁止</string>
<string name="text_documentation">ドキュメント</string>
<string name="text_documentation_launcher_icon">ドキュメントのランチャーアイコン</string>
<string name="text_documentation_source">ドキュメントのソース</string>
<string name="text_done">完了</string>
<string name="text_download">ダウンロード</string>
@@ -460,6 +457,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">レイアウトの検査中...</string>
<string name="text_licenses">オープンソースライセンス</string>
<string name="text_log">ログ</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 ログ</string>
<string name="text_app_shortcut_log_short_label">ログ</string>
<string name="text_logging_in">ログイン</string>
<string name="text_login">ログイン</string>
<string name="text_login_succeed">ログインに成功しました</string>
@@ -623,6 +622,8 @@
<string name="text_set_as_working_dir">作業ディレクトリに設定する</string>
<string name="text_set_breakpoint">ブレークポイントの設定</string>
<string name="text_settings">設定</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 設定</string>
<string name="text_app_shortcut_settings_short_label">設定</string>
<string name="text_should_not_be_empty">「テキストを空にすることはできません</string>
<string name="text_show_layout_bounds">レイアウト境界内のビュー</string>
<string name="text_show_layout_hierarchy">レイアウト階層内の表示</string>
@@ -679,19 +680,24 @@
<string name="text_write_secure_settings_description">アプリケーションが読み取ることはできるが、書き込むことはできないシステム環境設定を含む、安全なシステム設定です.\nこれは、ユーザーがシステムアプリのUIを通じて明示的に変更する必要がある環境設定のためのものです.\nセキュアなシステム設定を許可すると、通常のアプリケーションはセキュアな設定 (アクセシビリティサービスなど) を直接変更できるようになります</string>
<string name="text_write_system_settings">システム設定の書き込み</string>
<string name="theme_color_default">デフォルト</string>
<string name="text_only_latest_few_items_will_be_sent">最新 %d 个条目将被发送</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">当前日志总条目数 %d 超出可发送限制</string>
<string name="text_failed_to_send_log_entries">日志条目发送失败</string>
<string name="text_no_log_entries_to_send">无可发送的日志条目</string>
<string name="text_no_log_entries_to_export">无可导出的日志条目</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条目</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">已复制到剪贴板 (最新 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">日志条目导出失败</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_only_latest_few_items_will_be_sent">最新 %d 個の項目のみが送信されます</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">ログ・エントリ数 %d が送信制限を超えました</string>
<string name="text_failed_to_send_log_entries">ログ・エントリの送信に失敗しました</string>
<string name="text_no_log_entries_to_send">送信するログ・エントリがありません</string>
<string name="text_no_log_entries_to_export">エクスポートするログ・エントリがありません</string>
<string name="text_no_log_entries_to_copy">コピーするログ・エントリがありません</string>
<string name="text_failed_to_copy">コピーに失敗しました</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">既にクリップボードにコピーされました (最新 %d アイテムのみ)</string>
<string name="text_failed_to_export_log_entries">ログ・エントリのエクスポートに失敗しました</string>
<string name="dialog_button_dismiss">削除</string>
<string name="dialog_button_view_file">ファイルの表示</string>
<string name="text_exported">エクスポートされました</string>
<string name="text_some_items_exported">エクスポートされた項目 %d</string>
<string name="text_app_shortcut_disabled">このショートカットは無効です</string>
<string name="text_launcher_shortcuts">ランチャーショートカット</string>
<string name="description_launcher_shortcuts">ショートカットは、AutoJs6 で特定のアクションを実行することができます。ユーザーは、サポートされているランチャーにこれらのショートカットを表示し、AutoJs6アプリケーションのドキュメントを読んだり、AutoJs6の設定ページを起動したりするなど、いくつかのタスクを素早く開始したり、アクティビティを起動したりすることができます</string>
<string name="summary_text_launcher_shortcuts">ランチャーへのショートカットの追加</string>
<string name="text_pin_shortcut_not_unsupported">ショートカットをランチャーにピン留めすることはサポートされていません</string>
<plurals name="text_items_total_sum">
<item quantity="other">合計: %d 件</item>

View File

@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Translator: [ QTranslate (https://quest-app.appspot.com) ] -->
<!-- Translator: [ DeepL (https://www.deepl.com/translator) ] -->
<!-- Proofreader: [ SuperMonster003 ] -->
<resources xmlns:tools="http://schemas.android.com/tools">
@@ -26,7 +27,6 @@
<string name="description_change_working_dir_preference">스크립트가 포함 된 디렉토리의 경로를 변경하십시오</string>
<string name="description_check_for_updates_preference">AutoJs6 은 GitHub 에서 업데이트를 가져오고 다운로드합니다.\n\n참고: 업데이트는 아직 다국어 지원을 제공하지 않습니다.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">클래스 이름 재매핑을 통해 4.x 버전에 대해 어느 정도의 Java 클래스 이름 호환성을 제공합니다.\n이 옵션을 켜면 스크립트가 시작될 때마다 다양한 정도의 시작 지연 (수십에서 수백 밀리초) 이 발생합니다.\n특별히 필요하지 않은 경우 옵션을 항상 해제하는 것이 좋습니다.</string>
<string name="description_documentation_launcher_icon_preference">문서 시작 관리자 아이콘을 사용하면 문서에 더 쉽게 액세스할 수 있으며 독립 실행형 응용 프로그램처럼 전환할 수 있습니다.</string>
<string name="description_documentation_source_preference">로컬 문서: AutoJs6 내장 파일을 문서 소스로 사용, 네트워크 연결이 필요하지 않습니다. 내용은 AutoJs6 이 업데이트됨에 따라 변경됩니다.\n온라인 문서: GitHub 페이지를 문서 소스로 사용, 네트워크 연결 필요. 콘텐츠는 항상 최신 상태입니다.\n\n참고: 온라인 문서의 읽기 환경을 최대화하려면 데스크탑 모니터와 같은 와이드 스크린 디스플레이 장치를 사용하는 것이 좋습니다.\n참고: 버전 6.2.0 현재 문서는 아직 개발 초기 단계이며 대부분의 콘텐츠가 아직 작성되거나 업데이트되지 않았습니다.</string>
<string name="description_documentation_source_preference_more">문서 페이지에서 어두운 테마를 지원하려면 다음 조건이 충족되어야 합니다.\n1. AutoJs6 에는 야간 모드가 활성화되어 있습니다.\n2. Android 시스템 WebView (또는 Google Chrome 과 같은 브라우저):\n- Android API 레벨 29 (Android 10) [Q] 이상: 버전 >= 76\n- Android API 레벨 28 (Android 9) [P] 이하: 버전 >= 105</string>
<string name="description_extending_js_build_in_objects">JavaScript 내장 개체를 확장하면 코드 유연성이 향상되고 더 풍부한 기능을 사용할 수 있지만 충돌이 발생하고 파손될 수도 있습니다.\n옵션이 켜져 있을 때 모든 스크립트에는 기본적으로 활성화된 내장 확장이 있습니다.\n기본 제공 확장은 종종 안전하지 않으며 기본 제공 확장의 원칙과 위험을 명확하게 이해하지 않는 한 권장되지 않습니다.\n옵션이 꺼져 있어도 프로젝트 문서에 설명된 대로 플러그인 전역 개체를 통해 내장 확장을 계속 활성화할 수 있습니다.</string>
@@ -59,12 +59,11 @@
<string name="dialog_button_system_settings_simplified">시스템</string>
<string name="dialog_button_update_now">업데이트</string>
<string name="dialog_button_use_default">기본값을 사용하십시오</string>
<string name="docs_app_name">AutoJs6 문서</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 문서</string>
<string name="text_app_shortcut_docs_short_label">문서</string>
<string name="edit_and_run_handle_intent_error">파일을 처리 할 수 없습니다</string>
<string name="edit_exit_without_save_warn">콘텐츠가 저장되지 않았습니다. 나가시겠습니까?</string>
<string name="entry_app_language_auto">시스템을 따르십시오</string>
<string name="entry_documentation_launcher_icon_hide">런처에서 아이콘 숨기기</string>
<string name="entry_documentation_launcher_icon_show">런처에 아이콘 표시</string>
<string name="entry_documentation_source_local">현지 문서</string>
<string name="entry_documentation_source_online">온라인 문서</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">텍스트 크기 변경</string>
@@ -345,7 +344,6 @@
<string name="text_do_not_ask_again_for_this_version">이 버전을 다시 요청하지 마십시오</string>
<string name="text_do_not_show_again">다시 보여주지 마세요</string>
<string name="text_documentation">서류</string>
<string name="text_documentation_launcher_icon">설명서 실행기 아이콘</string>
<string name="text_documentation_source">문서 소스</string>
<string name="text_done">완료</string>
<string name="text_download">다운로드</string>
@@ -460,6 +458,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">레이아웃 검사 ...</string>
<string name="text_licenses">오픈 소스 라이센스</string>
<string name="text_log">통나무</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 통나무</string>
<string name="text_app_shortcut_log_short_label">통나무</string>
<string name="text_logging_in">로그인</string>
<string name="text_login">로그인</string>
<string name="text_login_succeed">로그인이 성공했습니다</string>
@@ -623,6 +623,8 @@
<string name="text_set_as_working_dir">작업 디렉토리로</string>
<string name="text_set_breakpoint">중단 점을 설정하십시오</string>
<string name="text_settings">설정</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 설정</string>
<string name="text_app_shortcut_settings_short_label">설정</string>
<string name="text_should_not_be_empty">텍스트는 비어질 수 없다</string>
<string name="text_show_layout_bounds">레이아웃 경계보기</string>
<string name="text_show_layout_hierarchy">레이아웃 계층 구조보기</string>
@@ -679,27 +681,30 @@
<string name="text_write_secure_settings_description">애플리케이션이 읽을 수 있지만 쓸 수없는 시스템 환경 설정을 포함하는 보안 시스템 설정.\n이들은 사용자가 시스템 앱의 UI를 통해 명시 적으로 수정 해야하는 선호도입니다.\n보안 시스템 설정 권한을 사용하면 일반 애플리케이션이 보안 설정 (예: 접근성 서비스)을 직접 수정할 수 있습니다.</string>
<string name="text_write_system_settings">시스템 설정을 작성하십시오</string>
<string name="theme_color_default">기본</string>
<string name="text_only_latest_few_items_will_be_sent">仅最新的 %d 个条目将被发送</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">当前日志总条目数 %d 超出可发送限制</string>
<string name="text_failed_to_send_log_entries">日志条目发送失败</string>
<string name="text_no_log_entries_to_send">无可发送的日志条目</string>
<string name="text_no_log_entries_to_export">无可导出的日志条目</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条目</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">已复制到剪贴板 (仅最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">日志条目导出失败</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_only_latest_few_items_will_be_sent">최신 %d 항목만 전송됩니다</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">로그 항목 수 %d개가 전송 제한을 초과했습니다</string>
<string name="text_failed_to_send_log_entries">로그 항목을 보내지 못했습니다</string>
<string name="text_no_log_entries_to_send">보낼 로그 항목이 없습니다</string>
<string name="text_no_log_entries_to_export">내보낼 로그 항목이 없습니다</string>
<string name="text_no_log_entries_to_copy">복사할 로그 항목이 없습니다</string>
<string name="text_failed_to_copy">복사하지 못했습니다</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">클립보드에 이미 복사되었습니다(최신 %d 항목만)</string>
<string name="text_failed_to_export_log_entries">로그 항목을 내보내지 못했습니다</string>
<string name="dialog_button_dismiss">Dismiss</string>
<string name="dialog_button_view_file">파일 보기</string>
<string name="text_exported">내보낸</string>
<string name="text_some_items_exported">내보낸 %d 항목</string>
<string name="text_app_shortcut_disabled">이 바로 가기가 비활성화되었습니다</string>
<string name="text_launcher_shortcuts">런처 바로 가기</string>
<string name="description_launcher_shortcuts">바로가기는 AutoJs6 에서 특정 작업을 수행할 수 있습니다. 사용자는 지원되는 런처에 이러한 바로가기를 표시하고 AutoJs6 애플리케이션 문서 읽기, AutoJs6 설정 페이지 실행 등과 같은 일부 작업을 빠르게 시작하거나 활동을 실행할 수 있습니다.</string>
<string name="summary_text_launcher_shortcuts">런처에 바로 가기 추가</string>
<string name="text_pin_shortcut_not_unsupported">런처에 바로가기를 고정하는 것은 지원되지 않습니다</string>
<plurals name="text_items_total_sum">
<item quantity="one">총: %d 항목</item>
<item quantity="other">총: %d 개 항목</item>
</plurals>
<plurals name="text_already_stop_n_scripts">
<item quantity="one">%d 스크립트가 중지되었습니다</item>
<item quantity="other">%d 개의 스크립트가 중지되었습니다</item>
</plurals>

View File

@@ -26,7 +26,6 @@
<string name="description_change_working_dir_preference">Измените путь к директории, содержащей скрипты</string>
<string name="description_check_for_updates_preference">AutoJs6 получает и загружает обновления с GitHub.\n\nПримечание: обновление пока не обеспечивает многоязыковую поддержку.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">Обеспечивает определенную совместимость имен классов Java для версий 4.x путем переименования имен классов.\nПри включении этой опции при каждом запуске скрипта будет происходить задержка запуска (от десятков до сотен миллисекунд).\nРекомендуется всегда держать эту опцию выключенной, если в ней нет особой необходимости.</string>
<string name="description_documentation_launcher_icon_preference">Значок запуска документации облегчает доступ к документам и может переключаться как отдельное приложение.</string>
<string name="description_documentation_source_preference">Локальная документация: Использование встроенных файлов AutoJs6 в качестве источников документации, подключение к сети не требуется. Содержание меняется по мере обновления AutoJs6.\nОнлайн-документы: Использование страниц GitHub в качестве источников документации, требуется подключение к сети. Содержимое всегда обновляется.\n\nПримечание: Чтобы максимально улучшить качество чтения онлайн-документов, рекомендуется использовать широкоформатное устройство отображения, например настольный монитор.\nПримечание: Начиная с версии 6.2.0, документация находится на предварительной стадии разработки, и большая часть содержимого еще не была написана или обновлена.</string>
<string name="description_documentation_source_preference_more">Для поддержки темной темы на страницах документов должны быть выполнены следующие условия:\n1. В AutoJs6 включен ночной режим\n2. Android System WebView (или браузеры типа Google Chrome):\n- Android API Level 29 (Android 10) [Q] и выше: версия >= 76\n- Android API Level 28 (Android 9) [P] и ниже: версия >= 105</string>
<string name="description_extending_js_build_in_objects">Расширение встроенных объектов JavaScript может повысить гибкость кода и обеспечить более богатую функциональность, но может привести к конфликтам и даже поломкам.\nВсе сценарии имеют встроенные расширения, включенные по умолчанию, когда опция включена.\nВстроенные расширения часто небезопасны, и их не рекомендуется использовать, пока принципы и риски встроенных расширений не будут четко поняты.\nКогда опция выключена, встроенные расширения все еще можно включить через глобальный объект plugins, как описано в документации проекта.</string>
@@ -59,12 +58,11 @@
<string name="dialog_button_system_settings_simplified">Система</string>
<string name="dialog_button_update_now">Обновить</string>
<string name="dialog_button_use_default">Использовать по умолчанию</string>
<string name="docs_app_name">AutoJs6 документы</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 документы</string>
<string name="text_app_shortcut_docs_short_label">документы</string>
<string name="edit_and_run_handle_intent_error">Невозможно обработать файл</string>
<string name="edit_exit_without_save_warn">Содержимое не было сохранено, вы уверены в выходе?</string>
<string name="entry_app_language_auto">Следовать за системой</string>
<string name="entry_documentation_launcher_icon_hide">Скрыть значок из пусковой установки</string>
<string name="entry_documentation_launcher_icon_show">Показать значок в пусковой установке</string>
<string name="entry_documentation_source_local">Локальные документы</string>
<string name="entry_documentation_source_online">Онлайн-документы</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">размер текста</string>
@@ -345,7 +343,6 @@
<string name="text_do_not_ask_again_for_this_version">Не показывать снова эту версию</string>
<string name="text_do_not_show_again">Не показывать снова</string>
<string name="text_documentation">Документы</string>
<string name="text_documentation_launcher_icon">Значок пусковой установки документации</string>
<string name="text_documentation_source">Источник документации</string>
<string name="text_done">Готово</string>
<string name="text_download">Скачать</string>
@@ -460,6 +457,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">Проверка макета...</string>
<string name="text_licenses">Лицензии на открытые источники</string>
<string name="text_log">Журнал</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 Журнал</string>
<string name="text_app_shortcut_log_short_label">Журнал</string>
<string name="text_logging_in">Вход в систему</string>
<string name="text_login">Вход</string>
<string name="text_login_succeed">Вход выполнен успешно</string>
@@ -623,6 +622,8 @@
<string name="text_set_as_working_dir">Как рабочий каталог</string>
<string name="text_set_breakpoint">Установить точку останова</string>
<string name="text_settings">Настройки</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 Настройки</string>
<string name="text_app_shortcut_settings_short_label">Настройки</string>
<string name="text_should_not_be_empty">Текст не может быть пустым</string>
<string name="text_show_layout_bounds">Вид в границах макета</string>
<string name="text_show_layout_hierarchy">Вид в иерархии макета</string>
@@ -679,19 +680,24 @@
<string name="text_write_secure_settings_description">Настройки безопасности системы, содержащие системные предпочтения, которые приложения могут читать, но не имеют права записывать.\nОни предназначены для параметров, которые пользователь должен явно изменить через пользовательский интерфейс системного приложения.\nПри наличии разрешения на безопасные системные настройки обычные приложения могут напрямую изменять безопасные настройки (например, служба доступности).</string>
<string name="text_write_system_settings">Запись системных настроек</string>
<string name="theme_color_default">По умолчанию</string>
<string name="text_only_latest_few_items_will_be_sent">仅最新的 %d 个条目将被发送</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">当前日志总条目数 %d 超出可发送限制</string>
<string name="text_failed_to_send_log_entries">日志条目发送失败</string>
<string name="text_no_log_entries_to_send">无可发送的日志条目</string>
<string name="text_no_log_entries_to_export">无可导出的日志条目</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条目</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">已复制到剪贴板 (仅最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">日志条目导出失败</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_only_latest_few_items_will_be_sent">Будут отправлены только последние %d элементов</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">Количество записей журнала %d превышает лимит для отправки</string>
<string name="text_failed_to_send_log_entries">Не удалось отправить записи журнала</string>
<string name="text_no_log_entries_to_send">Нет записей журнала для отправки</string>
<string name="text_no_log_entries_to_export">Нет записей журнала для экспорта</string>
<string name="text_no_log_entries_to_copy">Нет записей журнала для копирования</string>
<string name="text_failed_to_copy">Не удалось скопировать</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">Уже скопировано в буфер обмена (только последние %d элементов)</string>
<string name="text_failed_to_export_log_entries">Не удалось экспортировать записи журнала</string>
<string name="dialog_button_dismiss">Удалить</string>
<string name="dialog_button_view_file">Просмотр файла</string>
<string name="text_exported">Экспортировано</string>
<string name="text_some_items_exported">Экспортировано %d элементов</string>
<string name="text_app_shortcut_disabled">Этот ярлык отключен</string>
<string name="text_launcher_shortcuts">Ярлыки лаунчера</string>
<string name="description_launcher_shortcuts">Ярлыки позволяют выполнять определенные действия в AutoJs6. Пользователи могут отображать эти ярлыки в поддерживаемой программе запуска и быстро запускать некоторые задачи или действия, например, читать документацию по приложению AutoJs6, запускать страницу настроек AutoJs6 и т.д.</string>
<string name="summary_text_launcher_shortcuts">Добавление ярлыков в пусковую установку</string>
<string name="text_pin_shortcut_not_unsupported">Закрепление ярлыков в пусковой установке не поддерживается</string>
<plurals name="text_items_total_sum">
<item quantity="one">Всего: %d элемент</item>

View File

@@ -26,7 +26,6 @@
<string name="description_change_working_dir_preference">更改包含腳本的文件夾路徑</string>
<string name="description_check_for_updates_preference">AutoJs6 從 GitHub 獲取並下載更新.\n\n注: 版本更新內容暫未提供多語言支持.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">通過類名重映射, 提供一定程度上的 4.x 版本 Java 類名兼容.\n開啓選項後, 每次啓動腳本將出現不同程度的啓動延遲 (幾十到幾百毫秒不等).\n如無特別需求, 建議始終保持選項關閉.</string>
<string name="description_documentation_launcher_icon_preference">文檔啓動器圖標便於直接訪問文檔, 並可像獨立應用程序一樣進行切換.</string>
<string name="description_documentation_source_preference">本地文檔: AutoJs6 內置文件作為文檔來源, 無需網絡連接, 隨 AutoJs6 應用更新而發生內容變動.\n在線文檔: 使用 GitHub 網頁作為文檔來源, 需網絡連接, 可隨時保持文檔內容為最新.\n\n注: 為最大化在線文檔的閲讀體驗, 建議使用桌面顯示器等寬屏顯示設備閲讀.\n注: 截至 6.2.0 版本, 文檔尚處於初步編寫階段, 大部分內容尚未完成編寫或更新.</string>
<string name="description_documentation_source_preference_more">文檔頁面的深色主題支持需要滿足以下條件:\n1. AutoJs6 開啓夜間模式\n2. WebView (或 Google Chrome 等瀏覽器) 版本要求:\n- API 級別 29 (安卓 10) [Q] 及以上: 版本不低於 76\n- API 級別 28 (安卓 9) [P] 及以下: 版本不低於 105</string>
<string name="description_extending_js_build_in_objects">擴展 JavaScript 內置對象可以增加代碼靈活性並實現更豐富的功能, 但可能造成衝突甚至破壞.\n選項開啓後所有腳本均默認啓用內置擴展.\n內置擴展往往是不安全的, 除非明確瞭解內置擴展的原理及風險, 否則不建議啓用.\n選項關閉後, 仍然可以通過 plugins 全局對象啓用內置擴展, 詳見項目文檔.</string>
@@ -59,12 +58,11 @@
<string name="dialog_button_system_settings_simplified">@string/dialog_button_system_settings</string>
<string name="dialog_button_update_now">立即更新</string>
<string name="dialog_button_use_default">使用默認值</string>
<string name="docs_app_name">AutoJs6 文檔</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 文檔</string>
<string name="text_app_shortcut_docs_short_label">文檔</string>
<string name="edit_and_run_handle_intent_error">無法處理文件</string>
<string name="edit_exit_without_save_warn">內容尚未保存, 確定要退出嗎</string>
<string name="entry_app_language_auto">跟隨系統</string>
<string name="entry_documentation_launcher_icon_hide">隱藏啓動器圖標</string>
<string name="entry_documentation_launcher_icon_show">顯示啓動器圖標</string>
<string name="entry_documentation_source_local">本地文檔</string>
<string name="entry_documentation_source_online">在線文檔</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">更改字體大小</string>
@@ -345,7 +343,6 @@
<string name="text_do_not_ask_again_for_this_version">此版本不再提示</string>
<string name="text_do_not_show_again">不再提示</string>
<string name="text_documentation">文檔</string>
<string name="text_documentation_launcher_icon">文檔啓動器圖標</string>
<string name="text_documentation_source">文檔源</string>
<string name="text_done">完成</string>
<string name="text_download">下載</string>
@@ -460,6 +457,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">佈局分析中...</string>
<string name="text_licenses">開源許可信息</string>
<string name="text_log">日誌</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 日誌</string>
<string name="text_app_shortcut_log_short_label">日誌</string>
<string name="text_logging_in">登錄中</string>
<string name="text_login">登錄</string>
<string name="text_login_succeed">登錄成功</string>
@@ -623,6 +622,8 @@
<string name="text_set_as_working_dir">用作工作路徑</string>
<string name="text_set_breakpoint">設置斷點</string>
<string name="text_settings">設置</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 設置</string>
<string name="text_app_shortcut_settings_short_label">設置</string>
<string name="text_should_not_be_empty">文本不能為空</string>
<string name="text_show_layout_bounds">在佈局範圍中查看</string>
<string name="text_show_layout_hierarchy">在佈局層次中查看</string>
@@ -679,19 +680,24 @@
<string name="text_write_secure_settings_description">安全設置包含應用程序可讀但不可寫入的設置選項, 這些選項只能由 UI 或系統級別應用修改.\n被授予 \"修改安全設置權限\" 後, 普通應用可直接修改上述安全設置 (例如無障礙服務).</string>
<string name="text_write_system_settings">修改系統設置</string>
<string name="theme_color_default">默認</string>
<string name="text_only_latest_few_items_will_be_sent">最新的 %d 个条目将被发</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">前日志总条目数 %d 超出可送限制</string>
<string name="text_failed_to_send_log_entries">志条目发送失</string>
<string name="text_no_log_entries_to_send">无可发送的日志条</string>
<string name="text_no_log_entries_to_export">无可导出的日志条</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">复制到剪板 (最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">志条目导出失</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="text_only_latest_few_items_will_be_sent">最新的 %d 個條目將被髮</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">前日誌總條目數 %d 超出可送限制</string>
<string name="text_failed_to_send_log_entries">誌條目發送失</string>
<string name="text_no_log_entries_to_send">無可發送的日誌條</string>
<string name="text_no_log_entries_to_export">無可導出的日誌條</string>
<string name="text_no_log_entries_to_copy">無可複製的日誌條</string>
<string name="text_failed_to_copy">複製失敗</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">複製到剪板 (最新的 %d 個條目)</string>
<string name="text_failed_to_export_log_entries">誌條目導出失</string>
<string name="dialog_button_dismiss">關閉</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported"></string>
<string name="text_some_items_exported">出 %d 个条</string>
<string name="text_exported"></string>
<string name="text_some_items_exported">出 %d 個條</string>
<string name="text_app_shortcut_disabled">此快捷方式已禁用</string>
<string name="text_launcher_shortcuts">啓動器快捷方式</string>
<string name="description_launcher_shortcuts">快捷方式可以在 AutoJs6 中執行特定操作, 用户可以在啓動器中顯示這些快捷方式, 並快速開始某些任務或啓動某個活動, 如閲讀 AutoJs6 應用文檔, 啓動 AutoJs6 設置頁面等.</string>
<string name="summary_text_launcher_shortcuts">添加快捷方式到啓動器</string>
<string name="text_pin_shortcut_not_unsupported">將快捷方式固定到啓動器不被支持</string>
<plurals name="text_items_total_sum">
<item quantity="other">共計: %d 項</item>

View File

@@ -26,7 +26,6 @@
<string name="description_change_working_dir_preference">更改包含指令碼的資料夾路徑</string>
<string name="description_check_for_updates_preference">AutoJs6 從 GitHub 獲取並下載更新.\n\n注: 版本更新內容暫未提供多語言支援.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">透過類名重對映, 提供一定程度上的 4.x 版本 Java 類名相容.\n開啟選項後, 每次啟動指令碼將出現不同程度的啟動延遲 (幾十到幾百毫秒不等).\n如無特別需求, 建議始終保持選項關閉.</string>
<string name="description_documentation_launcher_icon_preference">文件啟動器圖示便於直接訪問文件, 並可像獨立應用程式一樣進行切換.</string>
<string name="description_documentation_source_preference">本地文件: AutoJs6 內建檔案作為文件來源, 無需網路連線, 隨 AutoJs6 應用更新而發生內容變動.\n線上文件: 使用 GitHub 網頁作為文件來源, 需網路連線, 可隨時保持文件內容為最新.\n\n注: 為最大化線上文件的閱讀體驗, 建議使用桌面顯示器等寬屏顯示裝置閱讀.\n注: 截至 6.2.0 版本, 文件尚處於初步編寫階段, 大部分內容尚未完成編寫或更新.</string>
<string name="description_documentation_source_preference_more">文件頁面的深色主題支援需要滿足以下條件:\n1. AutoJs6 開啟夜間模式\n2. WebView (或 Google Chrome 等瀏覽器) 版本要求:\n- API 級別 29 (安卓 10) [Q] 及以上: 版本不低於 76\n- API 級別 28 (安卓 9) [P] 及以下: 版本不低於 105</string>
<string name="description_extending_js_build_in_objects">擴充套件 JavaScript 內建物件可以增加程式碼靈活性並實現更豐富的功能, 但可能造成衝突甚至破壞.\n選項開啟後所有指令碼均預設啟用內建擴充套件.\n內建擴充套件往往是不安全的, 除非明確瞭解內建擴充套件的原理及風險, 否則不建議啟用.\n選項關閉後, 仍然可以透過 plugins 全域性物件啟用內建擴充套件, 詳見專案文件.</string>
@@ -59,12 +58,11 @@
<string name="dialog_button_system_settings_simplified">@string/dialog_button_system_settings</string>
<string name="dialog_button_update_now">立即更新</string>
<string name="dialog_button_use_default">使用預設值</string>
<string name="docs_app_name">AutoJs6 文件</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 文件</string>
<string name="text_app_shortcut_docs_short_label">文件</string>
<string name="edit_and_run_handle_intent_error">無法處理檔案</string>
<string name="edit_exit_without_save_warn">內容尚未儲存, 確定要退出嗎</string>
<string name="entry_app_language_auto">跟隨系統</string>
<string name="entry_documentation_launcher_icon_hide">隱藏啟動器圖示</string>
<string name="entry_documentation_launcher_icon_show">顯示啟動器圖示</string>
<string name="entry_documentation_source_local">本地文件</string>
<string name="entry_documentation_source_online">線上文件</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">更改字型大小</string>
@@ -345,7 +343,6 @@
<string name="text_do_not_ask_again_for_this_version">此版本不再提示</string>
<string name="text_do_not_show_again">不再提示</string>
<string name="text_documentation">文件</string>
<string name="text_documentation_launcher_icon">文件啟動器圖示</string>
<string name="text_documentation_source">文件源</string>
<string name="text_done">完成</string>
<string name="text_download">下載</string>
@@ -460,6 +457,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">佈局分析中...</string>
<string name="text_licenses">開源許可資訊</string>
<string name="text_log">日誌</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 日誌</string>
<string name="text_app_shortcut_log_short_label">日誌</string>
<string name="text_logging_in">登入中</string>
<string name="text_login">登入</string>
<string name="text_login_succeed">登入成功</string>
@@ -623,6 +622,8 @@
<string name="text_set_as_working_dir">用作工作路徑</string>
<string name="text_set_breakpoint">設定斷點</string>
<string name="text_settings">設定</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 設定</string>
<string name="text_app_shortcut_settings_short_label">設定</string>
<string name="text_should_not_be_empty">文字不能為空</string>
<string name="text_show_layout_bounds">在佈局範圍中檢視</string>
<string name="text_show_layout_hierarchy">在佈局層次中檢視</string>
@@ -679,19 +680,24 @@
<string name="text_write_secure_settings_description">安全設定包含應用程式可讀但不可寫入的設定選項, 這些選項只能由 UI 或系統級別應用修改.\n被授予 \"修改安全設定許可權\" 後, 普通應用可直接修改上述安全設定 (例如無障礙服務).</string>
<string name="text_write_system_settings">修改系統設定</string>
<string name="theme_color_default">預設</string>
<string name="text_only_latest_few_items_will_be_sent">最新的 %d 个条目将被发</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">前日志总条目数 %d 超出可送限制</string>
<string name="text_failed_to_send_log_entries">志条目发送失</string>
<string name="text_no_log_entries_to_send">无可发送的日志条</string>
<string name="text_no_log_entries_to_export">无可导出的日志条</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">复制到剪贴板 (最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">志条目导出失</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported"></string>
<string name="text_some_items_exported">出 %d 个条</string>
<string name="text_only_latest_few_items_will_be_sent">最新的 %d 個條目將被髮</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">前日誌總條目數 %d 超出可送限制</string>
<string name="text_failed_to_send_log_entries">誌條目傳送失</string>
<string name="text_no_log_entries_to_send">無可傳送的日誌條</string>
<string name="text_no_log_entries_to_export">無可導出的日誌條</string>
<string name="text_no_log_entries_to_copy">無可複製的日誌條</string>
<string name="text_failed_to_copy">複製失敗</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">複製到剪貼簿 (最新的 %d 個條目)</string>
<string name="text_failed_to_export_log_entries">誌條目匯出失</string>
<string name="dialog_button_dismiss">關閉</string>
<string name="dialog_button_view_file">檢視檔案</string>
<string name="text_exported"></string>
<string name="text_some_items_exported">出 %d 個條</string>
<string name="text_app_shortcut_disabled">此快捷方式已禁用</string>
<string name="text_launcher_shortcuts">啟動器快捷方式</string>
<string name="description_launcher_shortcuts">快捷方式可以在 AutoJs6 中執行特定操作, 使用者可以在啟動器中顯示這些快捷方式, 並快速開始某些任務或啟動某個活動, 如閲讀 AutoJs6 應用文件, 啟動 AutoJs6 設定頁面等.</string>
<string name="summary_text_launcher_shortcuts">新增快捷方式到啟動器</string>
<string name="text_pin_shortcut_not_unsupported">將快捷方式固定到啟動器不被支援</string>
<plurals name="text_items_total_sum">
<item quantity="other">共計: %d 項</item>

View File

@@ -22,7 +22,6 @@
<string name="description_change_working_dir_preference">更改包含脚本的文件夹路径</string>
<string name="description_check_for_updates_preference">AutoJs6 从 GitHub 获取并下载更新.\n\n注: 版本更新内容暂未提供多语言支持.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">通过类名重映射, 提供一定程度上的 4.x 版本 Java 类名兼容.\n开启选项后, 每次启动脚本将出现不同程度的启动延迟 (几十到几百毫秒不等).\n如无特别需求, 建议始终保持选项关闭.</string>
<string name="description_documentation_launcher_icon_preference">文档启动器图标便于直接访问文档, 并可像独立应用程序一样进行切换.</string>
<string name="description_documentation_source_preference">本地文档: AutoJs6 内置文件作为文档来源, 无需网络连接, 随 AutoJs6 应用更新而发生内容变动.\n在线文档: 使用 GitHub 网页作为文档来源, 需网络连接, 可随时保持文档内容为最新.\n\n注: 为最大化在线文档的阅读体验, 建议使用桌面显示器等宽屏显示设备阅读.\n注: 截至 6.2.0 版本, 文档尚处于初步编写阶段, 大部分内容尚未完成编写或更新.</string>
<string name="description_documentation_source_preference_more">文档页面的深色主题支持需要满足以下条件:\n1. AutoJs6 开启夜间模式\n2. WebView (或 Google Chrome 等浏览器) 版本要求:\n- API 级别 29 (安卓 10) [Q] 及以上: 版本不低于 76\n- API 级别 28 (安卓 9) [P] 及以下: 版本不低于 105</string>
<string name="description_extending_js_build_in_objects">扩展 JavaScript 内置对象可以增加代码灵活性并实现更丰富的功能, 但可能造成冲突甚至破坏.\n选项开启后所有脚本均默认启用内置扩展.\n内置扩展往往是不安全的, 除非明确了解内置扩展的原理及风险, 否则不建议启用.\n选项关闭后, 仍然可以通过 plugins 全局对象启用内置扩展, 详见项目文档.</string>
@@ -55,12 +54,11 @@
<string name="dialog_button_system_settings_simplified">@string/dialog_button_system_settings</string>
<string name="dialog_button_update_now">立即更新</string>
<string name="dialog_button_use_default">使用默认值</string>
<string name="docs_app_name">AutoJs6 文档</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 文档</string>
<string name="text_app_shortcut_docs_short_label">文档</string>
<string name="edit_and_run_handle_intent_error">无法处理文件</string>
<string name="edit_exit_without_save_warn">内容尚未保存, 确定要退出吗</string>
<string name="entry_app_language_auto">跟随系统</string>
<string name="entry_documentation_launcher_icon_hide">隐藏启动器图标</string>
<string name="entry_documentation_launcher_icon_show">显示启动器图标</string>
<string name="entry_documentation_source_local">本地文档</string>
<string name="entry_documentation_source_online">在线文档</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">更改字体大小</string>
@@ -341,7 +339,6 @@
<string name="text_do_not_ask_again_for_this_version">此版本不再提示</string>
<string name="text_do_not_show_again">不再提示</string>
<string name="text_documentation">文档</string>
<string name="text_documentation_launcher_icon">文档启动器图标</string>
<string name="text_documentation_source">文档源</string>
<string name="text_done">完成</string>
<string name="text_download">下载</string>
@@ -456,6 +453,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">布局分析中...</string>
<string name="text_licenses">开源许可信息</string>
<string name="text_log">日志</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 日志</string>
<string name="text_app_shortcut_log_short_label">日志</string>
<string name="text_logging_in">登录中</string>
<string name="text_login">登录</string>
<string name="text_login_succeed">登录成功</string>
@@ -619,6 +618,8 @@
<string name="text_set_as_working_dir">用作工作路径</string>
<string name="text_set_breakpoint">设置断点</string>
<string name="text_settings">设置</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 设置</string>
<string name="text_app_shortcut_settings_short_label">设置</string>
<string name="text_should_not_be_empty">文本不能为空</string>
<string name="text_show_layout_bounds">在布局范围中查看</string>
<string name="text_show_layout_hierarchy">在布局层次中查看</string>
@@ -688,6 +689,11 @@
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_app_shortcut_disabled">此快捷方式已禁用</string>
<string name="text_launcher_shortcuts">启动器快捷方式</string>
<string name="description_launcher_shortcuts">快捷方式可以在 AutoJs6 中执行特定操作, 用户可以在启动器中显示这些快捷方式, 并快速开始某些任务或启动某个活动, 如阅读 AutoJs6 应用文档, 启动 AutoJs6 设置页面等.</string>
<string name="summary_text_launcher_shortcuts">添加快捷方式到启动器</string>
<string name="text_pin_shortcut_not_unsupported">将快捷方式固定到启动器不被支持</string>
<plurals name="text_items_total_sum">
<item quantity="other">共计: %d 项</item>

View File

@@ -20,21 +20,11 @@
<item>@string/entry_documentation_source_online</item>
</string-array>
<string-array name="keys_documentation_launcher_icon">
<item>@string/key_documentation_launcher_icon_show</item>
<item>@string/key_documentation_launcher_icon_hide</item>
</string-array>
<string-array name="values_documentation_launcher_icon">
<item>@string/entry_documentation_launcher_icon_show</item>
<item>@string/entry_documentation_launcher_icon_hide</item>
</string-array>
<string-array name="keys_app_language">
<item>@string/key_app_language_auto</item>
<item>@string/key_app_language_zh</item>
<item>@string/key_app_language_zh_hk</item>
<item>@string/key_app_language_zh_tw</item>
<item>@string/key_app_language_zh_hans</item>
<item>@string/key_app_language_zh_hant_hk</item>
<item>@string/key_app_language_zh_hant_tw</item>
<item>@string/key_app_language_en</item>
<item>@string/key_app_language_fr</item>
<item>@string/key_app_language_es</item>
@@ -46,9 +36,9 @@
<string-array name="values_app_language">
<item>@string/entry_app_language_auto</item>
<item>@string/entry_app_language_zh</item>
<item>@string/entry_app_language_zh_hk</item>
<item>@string/entry_app_language_zh_tw</item>
<item>@string/entry_app_language_zh_hans</item>
<item>@string/entry_app_language_zh_hant_hk</item>
<item>@string/entry_app_language_zh_hant_tw</item>
<item>@string/entry_app_language_en</item>
<item>@string/entry_app_language_fr</item>
<item>@string/entry_app_language_es</item>

View File

@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="leak_canary_add_dynamic_shortcut">false</bool>
<bool name="leak_canary_add_launcher_icon">false</bool>
<bool name="pref_compatibility_with_classes_for_ver_4_x">false</bool>
<bool name="pref_extending_js_build_in_objects">false</bool>
<bool name="pref_use_volume_control_running">true</bool>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_app_shortcut_docs_adaptive_background">#68AA1C</color>
</resources>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_app_shortcut_log_adaptive_background">#68AA1C</color>
</resources>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_app_shortcut_settings_adaptive_background">#68AA1C</color>
</resources>

View File

@@ -60,7 +60,6 @@
<string name="description_change_working_dir_preference">Change the path of the directory containing scripts</string>
<string name="description_check_for_updates_preference">AutoJs6 gets and downloads updates from GitHub.\n\nNote: The update does not provide multilingual support yet.</string>
<string name="description_compatibility_with_classes_for_ver_4_x">Provides a degree of Java class name compatibility for 4.x versions through class name remapping.\nWith this option turned on, there will be a varying degree of startup delay (tens to hundreds of milliseconds) each time the script is started.\nIt is recommended to keep the option off at all times if not specifically required.</string>
<string name="description_documentation_launcher_icon_preference">description_documentation_launcher_icon_preference</string>
<string name="description_documentation_source_preference">Local docs: Using AutoJs6 build-in files as documentation sources, no network connection required. The content changes as AutoJs6 is updated.\nOnline docs: Using GitHub pages as documentation sources, requiring network connection. The content is always up to date.\n\nNote: To maximize the reading experience of online documents, it is recommended to use a widescreen display device such as a desktop monitor.\nNote: As of version 6.2.0, the documentation is still in the preliminary stages of development, and most of the content has not yet been written or updated.</string>
<string name="description_documentation_source_preference_more">The following conditions must be met for dark theme support on document pages:\n1. AutoJs6 has night mode enabled\n2. Android System WebView (or browsers like Google Chrome):\n- Android API Level 29 (Android 10) [Q] and above: version >= 76\n- Android API Level 28 (Android 9) [P] and below: version >= 105</string>
<string name="description_extending_js_build_in_objects">Extending JavaScript built-in objects can increase code flexibility and enable richer functionality, but can cause conflicts and even breakage.\nAll scripts have built-in extensions enabled by default when the option is turned on.\nBuilt-in extensions are often insecure, and are not recommended unless the principles and risks of built-in extensions are clearly understood.\nWhen the option is turned off, built-in extensions can still be enabled through the plugins global object, as described in the project documentation.</string>
@@ -95,7 +94,8 @@
<string name="dialog_button_system_settings_simplified">System</string>
<string name="dialog_button_update_now">Update</string>
<string name="dialog_button_use_default">Use default</string>
<string name="docs_app_name">AutoJs6 Docs</string>
<string name="text_app_shortcut_docs_long_label">AutoJs6 Docs</string>
<string name="text_app_shortcut_docs_short_label">Docs</string>
<string name="edit_and_run_handle_intent_error">Can\'t process file</string>
<string name="edit_exit_without_save_warn">The content has not been saved, are you sure to exit?</string>
<string name="email" translatable="false">hybbbb1996@gmail.com</string>
@@ -107,11 +107,9 @@
<string name="entry_app_language_ja" translatable="false">日本語</string>
<string name="entry_app_language_ko" translatable="false">한국어</string>
<string name="entry_app_language_ru" translatable="false">Русский</string>
<string name="entry_app_language_zh" translatable="false">简体中文</string>
<string name="entry_app_language_zh_hk" translatable="false">繁體中文 (香港)</string>
<string name="entry_app_language_zh_tw" translatable="false">繁體中文 (台灣)</string>
<string name="entry_documentation_launcher_icon_hide">Hide icon from launcher</string>
<string name="entry_documentation_launcher_icon_show">Show icon in launcher</string>
<string name="entry_app_language_zh_hans" translatable="false">简体中文</string>
<string name="entry_app_language_zh_hant_hk" translatable="false">繁體中文 (香港)</string>
<string name="entry_app_language_zh_hant_tw" translatable="false">繁體中文 (台灣)</string>
<string name="entry_documentation_source_local">Local docs</string>
<string name="entry_documentation_source_online">Online docs</string>
<string name="entry_editor_pinch_to_zoom_change_text_size">Change text size</string>
@@ -217,7 +215,7 @@
<string name="foreground_notification_title">AutoJs6 foreground service</string>
<string name="format_build_succeeded" formatted="true">Build succeeded.\nFile path: %s</string>
<string name="format_debug_bar_title">Debug [ %s ]</string>
<string name="format_default_package_name" formatted="true" translatable="false">com.example.script%d</string>
<string name="format_default_package_name" formatted="true" translatable="false">org.autojs.autojs6.%s</string>
<string name="format_dialog_progress_number_format_kilo_bytes" translatable="false">%.1fKB/%.1fKB</string>
<string name="format_dialog_progress_number_format_mega_bytes" translatable="false">%.2fMB/%.2fMB</string>
<string name="format_editor_info" formatted="false">Chars: %d\nLines: %d\nSize: %s</string>
@@ -238,12 +236,13 @@
<string name="key_app_language_ja" translatable="false">key_$_app_language_ja</string>
<string name="key_app_language_ko" translatable="false">key_$_app_language_ko</string>
<string name="key_app_language_ru" translatable="false">key_$_app_language_ru</string>
<string name="key_app_language_zh" translatable="false">key_$_app_language_zh</string>
<string name="key_app_language_zh_hk" translatable="false">key_$_app_language_zh_hk</string>
<string name="key_app_language_zh_tw" translatable="false">key_$_app_language_zh_tw</string>
<string name="key_app_language_zh_hans" translatable="false">key_$_app_language_zh</string>
<string name="key_app_language_zh_hant_hk" translatable="false">key_$_app_language_zh_hk</string>
<string name="key_app_language_zh_hant_tw" translatable="false">key_$_app_language_zh_tw</string>
<string name="key_auto_check_for_updates" translatable="false">key_$_auto_check_for_updates</string>
<string name="key_auto_night_mode_enabled" translatable="false">key_$_auto_night_mode_enabled</string>
<string name="key_change_working_dir" translatable="false">key_$_change_working_dir</string>
<string name="key_launcher_shortcuts" translatable="false">key_$_launcher_shortcuts</string>
<string name="key_check_for_updates" translatable="false">key_$_check_for_updates</string>
<string name="key_client_socket_normally_closed" translatable="false">key_$_client_socket_normally_closed</string>
<string name="key_compatibility_with_classes_for_ver_4_x" translatable="false">key_$_compatibility_with_classes_for_ver_4_x</string>
@@ -252,9 +251,6 @@
<string name="key_dialog_foreground_svc" translatable="false">key_$_dialog_foreground_svc</string>
<string name="key_dialog_log_entries_exported" translatable="false">key_$_dialog_log_entries_exported</string>
<string name="key_dialog_manage_all_files_permission" translatable="false">key_$_dialog_manage_all_files_permission</string>
<string name="key_documentation_launcher_icon" translatable="false">key_$_documentation_launcher_icon</string>
<string name="key_documentation_launcher_icon_hide" translatable="false">key_$_documentation_launcher_icon_hide</string>
<string name="key_documentation_launcher_icon_show" translatable="false">key_$_documentation_launcher_icon_show</string>
<string name="key_documentation_source" translatable="false">key_$_documentation_source</string>
<string name="key_documentation_source_local" translatable="false">key_$_documentation_source_local</string>
<string name="key_documentation_source_online" translatable="false">key_$_documentation_source_online</string>
@@ -531,7 +527,6 @@
<string name="text_do_not_ask_again_for_this_version">Dont ask again for this version</string>
<string name="text_do_not_show_again">Don\'t show again</string>
<string name="text_documentation">Documents</string>
<string name="text_documentation_launcher_icon">Documentation launcher icon</string>
<string name="text_documentation_source">Documentation source</string>
<string name="text_done">Done</string>
<string name="text_download">Download</string>
@@ -648,6 +643,8 @@
<string name="text_layout_inspector_is_dumping" tools:ignore="TypographyEllipsis">Inspecting layout...</string>
<string name="text_licenses">Open Sources Licenses</string>
<string name="text_log">Log</string>
<string name="text_app_shortcut_log_long_label">AutoJs6 Log</string>
<string name="text_app_shortcut_log_short_label">Log</string>
<string name="text_logging_in">Logging in</string>
<string name="text_login">Login</string>
<string name="text_login_succeed">Login succeeded</string>
@@ -818,6 +815,8 @@
<string name="text_set_as_working_dir">Set as working dir</string>
<string name="text_set_breakpoint">Set a breakpoint</string>
<string name="text_settings">Settings</string>
<string name="text_app_shortcut_settings_long_label">AutoJs6 Settings</string>
<string name="text_app_shortcut_settings_short_label">Settings</string>
<string name="text_share_app" translatable="false">AutoJs6:\n&url_github_autojs6;</string>
<string name="text_should_never_happen" translatable="false">Should never happen</string>
<string name="text_should_not_be_empty">Text can\'t be empty</string>
@@ -887,19 +886,27 @@
<string name="value_app_language_english" translatable="false">EN</string>
<string name="value_app_language_follow_system" translatable="false">Auto</string>
<string name="value_app_language_simplified_chinese" translatable="false">ZH_CN</string>
<string name="text_only_latest_few_items_will_be_sent">仅最新的 %d 个条目将被发送</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">当前日志总条目数 %d 超出可发送限制</string>
<string name="text_failed_to_send_log_entries">日志条目发送失败</string>
<string name="text_no_log_entries_to_send">无可发送的日志条目</string>
<string name="text_no_log_entries_to_export">无可导出的日志条目</string>
<string name="text_no_log_entries_to_copy">无可复制的日志条目</string>
<string name="text_failed_to_copy">复制失败</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">已复制到剪贴板 (仅最新的 %d 个条目)</string>
<string name="text_failed_to_export_log_entries">日志条目导出失败</string>
<string name="dialog_button_dismiss">关闭</string>
<string name="dialog_button_view_file">查看文件</string>
<string name="text_exported">已导出</string>
<string name="text_some_items_exported">已导出 %d 个条目</string>
<string name="text_only_latest_few_items_will_be_sent">Only latest %d items will be sent</string>
<string name="text_num_of_log_entries_exceeds_limit_for_sending">Number of log entries %d exceeds the limit for sending</string>
<string name="text_failed_to_send_log_entries">Failed to send log entries</string>
<string name="text_no_log_entries_to_send">No log entries to send</string>
<string name="text_no_log_entries_to_export">No log entries to export</string>
<string name="text_no_log_entries_to_copy">No log entries to copy</string>
<string name="text_failed_to_copy">Failed to copy</string>
<string name="text_already_copied_to_clip_but_only_latest_few_items">Already copied to clipboard (only latest %d items)</string>
<string name="text_failed_to_export_log_entries">Failed to export log entries</string>
<string name="dialog_button_dismiss">Dismiss</string>
<string name="dialog_button_view_file">View File</string>
<string name="text_exported">Exported</string>
<string name="text_some_items_exported">%d items exported</string>
<string name="text_app_shortcut_disabled">This shortcut is disabled</string>
<string name="id_launcher_shortcut_settings" translatable="false">shortcut_$_settings</string>
<string name="id_launcher_shortcut_docs" translatable="false">shortcut_$_docs</string>
<string name="id_launcher_shortcut_log" translatable="false">shortcut_$_log</string>
<string name="text_launcher_shortcuts">Launcher shortcuts</string>
<string name="description_launcher_shortcuts">Shortcuts can perform specific actions in AutoJs6. Users can display these shortcuts in a supported launcher and quickly start some tasks or launch an activity, such as reading AutoJs6 application documentation, launching AutoJs6 settings page, and so on.</string>
<string name="summary_text_launcher_shortcuts">Add shortcuts to launcher</string>
<string name="text_pin_shortcut_not_unsupported">Pinning shortcuts to launcher is not supported</string>
<plurals name="text_items_total_sum">
<item quantity="one">Total: %d item</item>

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- @OtherXmlVersions [ v33 ] -->
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="@string/id_launcher_shortcut_settings"
android:enabled="true"
android:icon="@mipmap/ic_app_shortcut_settings_adaptive"
android:shortcutShortLabel="@string/text_app_shortcut_settings_short_label"
android:shortcutLongLabel="@string/text_app_shortcut_settings_long_label"
android:shortcutDisabledMessage="@string/text_app_shortcut_disabled">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="org.autojs.autojs6"
android:targetClass="org.autojs.autojs.ui.settings.PreferencesActivity" />
<categories android:name="android.shortcut.conversation" />
</shortcut>
<shortcut
android:shortcutId="@string/id_launcher_shortcut_docs"
android:enabled="true"
android:icon="@mipmap/ic_app_shortcut_docs_adaptive"
android:shortcutShortLabel="@string/text_app_shortcut_docs_short_label"
android:shortcutLongLabel="@string/text_app_shortcut_docs_long_label"
android:shortcutDisabledMessage="@string/text_app_shortcut_disabled">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="org.autojs.autojs6"
android:targetClass="org.autojs.autojs.ui.doc.DocumentationActivity" />
<categories android:name="android.shortcut.conversation" />
</shortcut>
<shortcut
android:shortcutId="@string/id_launcher_shortcut_log"
android:enabled="true"
android:icon="@mipmap/ic_app_shortcut_log_adaptive"
android:shortcutShortLabel="@string/text_app_shortcut_log_short_label"
android:shortcutLongLabel="@string/text_app_shortcut_log_long_label"
android:shortcutDisabledMessage="@string/text_app_shortcut_disabled">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="org.autojs.autojs6"
android:targetClass="org.autojs.autojs.ui.log.LogActivity" />
<categories android:name="android.shortcut.conversation" />
</shortcut>
</shortcuts>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- @OtherXmlVersions [ default ] -->
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
android:accessibilityEventTypes="typeAllMask"
android:accessibilityFeedbackType="feedbackAllMask"
android:accessibilityFlags="flagIncludeNotImportantViews|flagReportViewIds|flagRetrieveInteractiveWindows|flagRequestEnhancedWebAccessibility|flagRequestFilterKeyEvents"
android:canPerformGestures="true"
android:canRequestEnhancedWebAccessibility="true"
android:canRequestFilterKeyEvents="true"
android:canRetrieveWindowContent="true"
android:canTakeScreenshot="true"
android:description="@string/text_a11y_service_description"
android:notificationTimeout="0" />

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- @OtherXmlVersions [ v25 ] -->
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="settings"
android:enabled="true"
android:icon="@drawable/ic_app_shortcut_settings_green"
android:shortcutShortLabel="@string/text_app_shortcut_settings_short_label"
android:shortcutLongLabel="@string/text_app_shortcut_settings_long_label"
android:shortcutDisabledMessage="@string/text_app_shortcut_disabled">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="org.autojs.autojs6"
android:targetClass="org.autojs.autojs.ui.settings.PreferencesActivity" />
<categories android:name="android.shortcut.conversation" />
</shortcut>
<shortcut
android:shortcutId="docs"
android:enabled="true"
android:icon="@drawable/ic_app_shortcut_docs_green"
android:shortcutShortLabel="@string/text_app_shortcut_docs_short_label"
android:shortcutLongLabel="@string/text_app_shortcut_docs_long_label"
android:shortcutDisabledMessage="@string/text_app_shortcut_disabled">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="org.autojs.autojs6"
android:targetClass="org.autojs.autojs.ui.doc.DocumentationActivity" />
<categories android:name="android.shortcut.conversation" />
</shortcut>
<shortcut
android:shortcutId="log"
android:enabled="true"
android:icon="@drawable/ic_app_shortcut_log_green"
android:shortcutShortLabel="@string/text_app_shortcut_log_short_label"
android:shortcutLongLabel="@string/text_app_shortcut_log_long_label"
android:shortcutDisabledMessage="@string/text_app_shortcut_disabled">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="org.autojs.autojs6"
android:targetClass="org.autojs.autojs.ui.log.LogActivity" />
<categories android:name="android.shortcut.conversation" />
</shortcut>
</shortcuts>

View File

@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- @OtherXmlVersions [ v30 ] -->
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
android:accessibilityEventTypes="typeAllMask"
android:accessibilityFeedbackType="feedbackAllMask"
@@ -7,6 +8,5 @@
android:canRequestEnhancedWebAccessibility="true"
android:canRequestFilterKeyEvents="true"
android:canRetrieveWindowContent="true"
android:canTakeScreenshot="true"
android:description="@string/text_a11y_service_description"
android:notificationTimeout="0" />

View File

@@ -59,14 +59,12 @@
app:longClickPrompt="@string/description_documentation_source_preference"
app:longClickPromptMore="@string/description_documentation_source_preference_more" />
<org.autojs.autojs.ui.settings.DocumentationLauncherIconPreference
<org.autojs.autojs.ui.settings.LauncherShortcutsPreference
app:layout="@layout/preference_custom"
app:key="@string/key_documentation_launcher_icon"
app:title="@string/text_documentation_launcher_icon"
app:itemKeys="@array/keys_documentation_launcher_icon"
app:itemValues="@array/values_documentation_launcher_icon"
app:itemDefaultKey="@string/key_documentation_launcher_icon_show"
app:longClickPrompt="@string/description_documentation_launcher_icon_preference" />
app:key="@string/key_launcher_shortcuts"
app:title="@string/text_launcher_shortcuts"
app:summary="@string/summary_text_launcher_shortcuts"
app:longClickPrompt="@string/description_launcher_shortcuts" />
<org.autojs.autojs.ui.settings.WorkingDirectoryPreference
app:layout="@layout/preference_custom"
@@ -133,11 +131,11 @@
app:summary="@string/summary_use_volume_key_to_stop_running_scripts" />
<org.autojs.autojs.theme.preference.ThemeColorSwitchPreference
app:layout="@layout/preference_custom"
app:key="@string/key_guard_mode"
app:defaultValue="@bool/pref_guard_mode"
app:title="@string/text_guard_mode"
app:summary="@string/summary_guard_mode"
app:layout="@layout/preference_custom" />
app:summary="@string/summary_guard_mode" />
</org.autojs.autojs.theme.preference.ThemeColorPreferenceCategory>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
<locale android:name="zh" /> <!-- Chinese (prefer Simplified, China) -->
<locale android:name="zh-Hant-HK" /> <!-- Chinese (Traditional, Hong Kong) -->
<locale android:name="zh-Hant-TW" /> <!-- Chinese (Traditional, Taiwan) -->
<locale android:name="en" /> <!-- English (prefer United States) -->
<locale android:name="fr" /> <!-- French (prefer France) -->
<locale android:name="es" /> <!-- Spanish (prefer Spain) -->
<locale android:name="ja" /> <!-- Japanese (prefer Japan) -->
<locale android:name="ko" /> <!-- Korean (prefer South Korea) -->
<locale android:name="ru" /> <!-- Russian (prefer Russia) -->
<locale android:name="ar" /> <!-- Arabic (prefer Egypt) -->
</locale-config>

View File

@@ -2,7 +2,9 @@
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:configure="org.autojs.autojs.external.widget.ScriptWidgetSettingsActivity"
android:initialLayout="@layout/widget_script_shortcut"
android:minHeight="40dp"
android:minWidth="40dp"
android:minHeight="24dp"
android:minWidth="24dp"
android:minResizeWidth="24dp"
android:minResizeHeight="24dp"
android:previewImage="@drawable/ic_node_js_black"
android:resizeMode="none" />
android:resizeMode="horizontal|vertical" />