From 903d45149d520e4c77eceabc322bf71e262e66e6 Mon Sep 17 00:00:00 2001 From: SuperMonster003 Date: Fri, 4 Apr 2025 14:14:00 +0800 Subject: [PATCH] =?UTF-8?q?6.6.2=20-=20Alpha5=20-=20=E4=B8=BB=E9=A2=98?= =?UTF-8?q?=E8=89=B2=E8=AE=BE=E7=BD=AE=E9=A1=B5=E9=9D=A2=E6=96=B0=E5=B8=83?= =?UTF-8?q?=E5=B1=80=E5=A2=9E=E5=8A=A0=E9=A2=9C=E8=89=B2=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E5=B8=AE=E5=8A=A9=E8=8F=9C=E5=8D=95=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/AndroidManifest.xml | 4 + .../autojs/core/web/InjectableWebView.kt | 3 +- .../theme/app/ColorInfoDialogManager.kt | 4 +- .../theme/app/ColorLibrariesActivity.kt | 11 +- .../autojs/theme/app/ColorLibraryActivity.kt | 38 ++- .../theme/app/ColorSearchHelpActivity.kt | 49 ++++ .../autojs/theme/app/ColorSelectActivity.kt | 5 +- .../theme/app/ColorSelectBaseActivity.kt | 101 ++++--- .../autojs/ui/doc/DocumentationActivity.kt | 2 +- .../autojs/ui/doc/DocumentationFragment.kt | 2 +- .../autojs/ui/main/drawer/DrawerFragment.kt | 28 +- .../ui/main/drawer/DrawerMenuAdapter.java | 1 - .../java/org/autojs/autojs/util/ColorUtils.kt | 6 +- .../org/autojs/autojs/util/WebViewUtils.kt | 38 +-- .../res/layout/activity_apps_icon_select.xml | 38 +-- .../res/layout/activity_color_search_help.xml | 20 ++ app/src/main/res/layout/activity_main.xml | 4 +- .../main/res/menu/menu_color_libraries.xml | 18 +- app/src/main/res/menu/menu_color_library.xml | 6 + .../res/raw-ar/color_search_help_document.md | 83 ++++++ .../res/raw-en/color_search_help_document.md | 67 +++++ .../res/raw-es/color_search_help_document.md | 83 ++++++ .../res/raw-fr/color_search_help_document.md | 83 ++++++ .../res/raw-ja/color_search_help_document.md | 83 ++++++ .../res/raw-ko/color_search_help_document.md | 83 ++++++ .../res/raw-ru/color_search_help_document.md | 83 ++++++ .../raw-zh-rHK/color_search_help_document.md | 91 +++++++ .../raw-zh-rTW/color_search_help_document.md | 91 +++++++ .../res/raw-zh/color_search_help_document.md | 91 +++++++ .../res/raw/color_search_help_document.md | 67 +++++ .../res/values-ar/android_colors_string.xml | 22 ++ .../main/res/values-ar/css_colors_string.xml | 144 ++++++++++ app/src/main/res/values-ar/strings.xml | 8 +- .../main/res/values-ar/web_colors_string.xml | 253 ++++++++++++++++++ app/src/main/res/values-en/strings.xml | 14 +- .../res/values-es/android_colors_string.xml | 22 ++ .../main/res/values-es/css_colors_string.xml | 144 ++++++++++ .../material_design_colors_string.xml | 6 +- app/src/main/res/values-es/strings.xml | 8 +- .../main/res/values-es/web_colors_string.xml | 253 ++++++++++++++++++ .../res/values-fr/android_colors_string.xml | 22 ++ .../main/res/values-fr/css_colors_string.xml | 144 ++++++++++ app/src/main/res/values-fr/strings.xml | 8 +- .../main/res/values-fr/web_colors_string.xml | 253 ++++++++++++++++++ .../res/values-ja/android_colors_string.xml | 22 ++ .../main/res/values-ja/css_colors_string.xml | 144 ++++++++++ app/src/main/res/values-ja/strings.xml | 8 +- .../main/res/values-ja/web_colors_string.xml | 253 ++++++++++++++++++ .../res/values-ko/android_colors_string.xml | 22 ++ .../main/res/values-ko/css_colors_string.xml | 144 ++++++++++ app/src/main/res/values-ko/strings.xml | 8 +- .../main/res/values-ko/web_colors_string.xml | 253 ++++++++++++++++++ .../res/values-ru/android_colors_string.xml | 22 ++ .../main/res/values-ru/css_colors_string.xml | 144 ++++++++++ app/src/main/res/values-ru/strings.xml | 8 +- .../main/res/values-ru/web_colors_string.xml | 253 ++++++++++++++++++ .../values-zh-rHK/android_colors_string.xml | 22 ++ .../res/values-zh-rHK/css_colors_string.xml | 144 ++++++++++ app/src/main/res/values-zh-rHK/strings.xml | 8 +- .../res/values-zh-rHK/web_colors_string.xml | 253 ++++++++++++++++++ .../values-zh-rTW/android_colors_string.xml | 22 ++ .../res/values-zh-rTW/css_colors_string.xml | 144 ++++++++++ app/src/main/res/values-zh-rTW/strings.xml | 8 +- .../res/values-zh-rTW/web_colors_string.xml | 253 ++++++++++++++++++ app/src/main/res/values-zh/strings.xml | 2 + app/src/main/res/values/strings.xml | 10 +- version.properties | 6 +- 67 files changed, 4599 insertions(+), 138 deletions(-) create mode 100644 app/src/main/java/org/autojs/autojs/theme/app/ColorSearchHelpActivity.kt create mode 100644 app/src/main/res/layout/activity_color_search_help.xml create mode 100644 app/src/main/res/raw-ar/color_search_help_document.md create mode 100644 app/src/main/res/raw-en/color_search_help_document.md create mode 100644 app/src/main/res/raw-es/color_search_help_document.md create mode 100644 app/src/main/res/raw-fr/color_search_help_document.md create mode 100644 app/src/main/res/raw-ja/color_search_help_document.md create mode 100644 app/src/main/res/raw-ko/color_search_help_document.md create mode 100644 app/src/main/res/raw-ru/color_search_help_document.md create mode 100644 app/src/main/res/raw-zh-rHK/color_search_help_document.md create mode 100644 app/src/main/res/raw-zh-rTW/color_search_help_document.md create mode 100644 app/src/main/res/raw-zh/color_search_help_document.md create mode 100644 app/src/main/res/raw/color_search_help_document.md create mode 100644 app/src/main/res/values-ar/android_colors_string.xml create mode 100644 app/src/main/res/values-ar/css_colors_string.xml create mode 100644 app/src/main/res/values-ar/web_colors_string.xml create mode 100644 app/src/main/res/values-es/android_colors_string.xml create mode 100644 app/src/main/res/values-es/css_colors_string.xml create mode 100644 app/src/main/res/values-es/web_colors_string.xml create mode 100644 app/src/main/res/values-fr/android_colors_string.xml create mode 100644 app/src/main/res/values-fr/css_colors_string.xml create mode 100644 app/src/main/res/values-fr/web_colors_string.xml create mode 100644 app/src/main/res/values-ja/android_colors_string.xml create mode 100644 app/src/main/res/values-ja/css_colors_string.xml create mode 100644 app/src/main/res/values-ja/web_colors_string.xml create mode 100644 app/src/main/res/values-ko/android_colors_string.xml create mode 100644 app/src/main/res/values-ko/css_colors_string.xml create mode 100644 app/src/main/res/values-ko/web_colors_string.xml create mode 100644 app/src/main/res/values-ru/android_colors_string.xml create mode 100644 app/src/main/res/values-ru/css_colors_string.xml create mode 100644 app/src/main/res/values-ru/web_colors_string.xml create mode 100644 app/src/main/res/values-zh-rHK/android_colors_string.xml create mode 100644 app/src/main/res/values-zh-rHK/css_colors_string.xml create mode 100644 app/src/main/res/values-zh-rHK/web_colors_string.xml create mode 100644 app/src/main/res/values-zh-rTW/android_colors_string.xml create mode 100644 app/src/main/res/values-zh-rTW/css_colors_string.xml create mode 100644 app/src/main/res/values-zh-rTW/web_colors_string.xml diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index be026f14..ef699202 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -276,6 +276,10 @@ android:launchMode="singleTop" android:theme="@style/AppTheme.FullScreen" /> + + diff --git a/app/src/main/java/org/autojs/autojs/core/web/InjectableWebView.kt b/app/src/main/java/org/autojs/autojs/core/web/InjectableWebView.kt index 30d8b8e5..ff77b92f 100644 --- a/app/src/main/java/org/autojs/autojs/core/web/InjectableWebView.kt +++ b/app/src/main/java/org/autojs/autojs/core/web/InjectableWebView.kt @@ -15,7 +15,7 @@ import org.mozilla.javascript.Scriptable * Transformed by SuperMonster003 on Apr 18, 2023. */ @ScriptClass -@SuppressLint("ViewConstructor", "SetJavaScriptEnabled") +@SuppressLint("ViewConstructor") class InjectableWebView(context: Context, jsCtx: org.mozilla.javascript.Context, scriptable: Scriptable, url: String?) : WebView(context) { private var mInjectableWebClient: InjectableWebClient @@ -25,6 +25,7 @@ class InjectableWebView(context: Context, jsCtx: org.mozilla.javascript.Context, useWideViewPort = true builtInZoomControls = true loadWithOverviewMode = true + @SuppressLint("SetJavaScriptEnabled") javaScriptEnabled = true javaScriptCanOpenWindowsAutomatically = true domStorageEnabled = true diff --git a/app/src/main/java/org/autojs/autojs/theme/app/ColorInfoDialogManager.kt b/app/src/main/java/org/autojs/autojs/theme/app/ColorInfoDialogManager.kt index dd6269ad..af6439a9 100644 --- a/app/src/main/java/org/autojs/autojs/theme/app/ColorInfoDialogManager.kt +++ b/app/src/main/java/org/autojs/autojs/theme/app/ColorInfoDialogManager.kt @@ -21,13 +21,13 @@ import org.autojs.autojs6.databinding.ColorInfoDialogListItemBinding object ColorInfoDialogManager { @JvmStatic - fun showColorInfoDialog(context: Context, @ColorInt color: Int, titleRes: Int = R.string.dialog_title_color_details) { + fun showColorInfoDialog(context: Context, @ColorInt color: Int, title: String? = null) { val binding = ColorInfoDialogListItemBinding.inflate(LayoutInflater.from(context)) val colorWithoutAlpha = color or -0x1000000 val dialog = MaterialDialog.Builder(context) - .title(titleRes) + .title(title ?: context.getString(R.string.dialog_title_color_details)) .customView(binding.root, false) .positiveText(R.string.dialog_button_dismiss) .positiveColorRes(R.color.dialog_button_default) diff --git a/app/src/main/java/org/autojs/autojs/theme/app/ColorLibrariesActivity.kt b/app/src/main/java/org/autojs/autojs/theme/app/ColorLibrariesActivity.kt index c7a74c57..563c85c5 100644 --- a/app/src/main/java/org/autojs/autojs/theme/app/ColorLibrariesActivity.kt +++ b/app/src/main/java/org/autojs/autojs/theme/app/ColorLibrariesActivity.kt @@ -53,7 +53,8 @@ class ColorLibrariesActivity : ColorSelectBaseActivity() { setUpAppBar(it.appBar, it.appBarContainer) it.toolbar.let { toolbar -> setUpToolbar(toolbar) - toolbar.setOnLongClickListener { true.also { showThemeColorDetails() } } + toolbar.setOnClickListener { true.also { showThemeColorDetails() } } + toolbar.setOnLongClickListener { true.also { /* toggleFabVisibility() */ } } } } @@ -140,7 +141,11 @@ class ColorLibrariesActivity : ColorSelectBaseActivity() { } R.id.action_toggle_color_select_layout -> { isLegacyLayout = true - startActivity(this) + startActivity(this, isToggled = true) + true + } + R.id.action_color_search_help -> { + showColorSearchHelp() true } else -> super.onOptionsItemSelected(item) @@ -155,7 +160,7 @@ class ColorLibrariesActivity : ColorSelectBaseActivity() { } } - override fun getSubtitle() = getCurrentColorSummary(this) + override fun getSubtitle(withHexSuffix: Boolean) = getCurrentColorSummary(this, withHexSuffix = withHexSuffix) companion object { diff --git a/app/src/main/java/org/autojs/autojs/theme/app/ColorLibraryActivity.kt b/app/src/main/java/org/autojs/autojs/theme/app/ColorLibraryActivity.kt index 1b6f6df2..712f58df 100644 --- a/app/src/main/java/org/autojs/autojs/theme/app/ColorLibraryActivity.kt +++ b/app/src/main/java/org/autojs/autojs/theme/app/ColorLibraryActivity.kt @@ -11,6 +11,8 @@ import android.os.Bundle import android.view.Menu import android.view.MenuItem import android.view.View +import android.view.View.OnClickListener +import androidx.appcompat.widget.Toolbar import androidx.core.view.forEach import androidx.recyclerview.widget.DividerItemDecoration import androidx.recyclerview.widget.LinearLayoutManager @@ -20,6 +22,8 @@ import androidx.recyclerview.widget.RecyclerView.VERTICAL import androidx.recyclerview.widget.ThemeColorRecyclerView import org.autojs.autojs.core.image.ColorItems import org.autojs.autojs.core.pref.Pref +import org.autojs.autojs.theme.ThemeChangeNotifier +import org.autojs.autojs.theme.ThemeColorManager import org.autojs.autojs.theme.app.ColorLibrariesActivity.Companion.COLOR_LIBRARY_ID_DEFAULT import org.autojs.autojs.theme.app.ColorLibrariesActivity.Companion.COLOR_LIBRARY_ID_MATERIAL import org.autojs.autojs.theme.app.ColorLibrariesActivity.Companion.PresetColorItem @@ -47,6 +51,10 @@ class ColorLibraryActivity : ColorSelectBaseActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) + ThemeChangeNotifier.themeChanged.observe(this) { + updateClickListener(binding.toolbar) + } + val libraryId = intent.getIntExtra(INTENT_IDENTIFIER_LIBRARY_ID, -1) val library = presetColorLibraries.find { it.id == libraryId }?.also { lib -> mLibrary = lib @@ -57,10 +65,13 @@ class ColorLibraryActivity : ColorSelectBaseActivity() { MtActivityColorLibraryBinding.inflate(layoutInflater).let { binding = it setContentView(it.root) - setUpToolbar(it.toolbar) setUpAppBar(it.appBar, it.appBarContainer) - it.toolbar.title = getString(library.titleRes) - updateSubtitle() + it.toolbar.let { toolbar -> + setUpToolbar(toolbar) + toolbar.title = getString(library.titleRes) + updateSubtitle(toolbar) + updateClickListener(toolbar) + } } binding.colorLibraryRecyclerView.let { it -> @@ -80,13 +91,24 @@ class ColorLibraryActivity : ColorSelectBaseActivity() { } } - override fun getSubtitle(): String? = when (mLibrary.id) { + private fun updateClickListener(toolbar: Toolbar) { + when (mLibrary.id) { + Pref.getInt(KEY_SELECTED_COLOR_LIBRARY_ID, SELECT_NONE) -> object : OnClickListener { + override fun onClick(v: View?) { + showColorDetails(ThemeColorManager.colorPrimary, getSubtitle(false)) + } + } + else -> null + }.let { toolbar.setOnClickListener(it) } + } + + override fun getSubtitle(withHexSuffix: Boolean): String? = when (mLibrary.id) { Pref.getInt(KEY_SELECTED_COLOR_LIBRARY_ID, SELECT_NONE) -> { - getCurrentColorSummary(this, true) + getCurrentColorSummary(this, withIdentifierPrefix = false, withHexSuffix = withHexSuffix) } else -> null } - + private fun setUpSelectedPosition(adapter: ColorItemAdapter) { when (Pref.getInt(KEY_SELECTED_COLOR_LIBRARY_ID, SELECT_NONE)) { SELECT_NONE -> when (val legacyIndex = Pref.getInt(KEY_LEGACY_SELECTED_COLOR_INDEX, SELECT_NONE)) { @@ -217,6 +239,10 @@ class ColorLibraryActivity : ColorSelectBaseActivity() { locateCurrentThemeColor() true } + R.id.action_color_search_help -> { + showColorSearchHelp() + true + } else -> super.onOptionsItemSelected(item) } diff --git a/app/src/main/java/org/autojs/autojs/theme/app/ColorSearchHelpActivity.kt b/app/src/main/java/org/autojs/autojs/theme/app/ColorSearchHelpActivity.kt new file mode 100644 index 00000000..ee2edcd6 --- /dev/null +++ b/app/src/main/java/org/autojs/autojs/theme/app/ColorSearchHelpActivity.kt @@ -0,0 +1,49 @@ +package org.autojs.autojs.theme.app + +import android.annotation.SuppressLint +import android.os.Bundle +import org.autojs.autojs.ui.BaseActivity +import org.autojs.autojs.ui.widget.CommonMarkdownView +import org.autojs.autojs.util.ViewUtils +import org.autojs.autojs.util.WebViewUtils +import org.autojs.autojs6.R +import org.autojs.autojs6.databinding.ActivityColorSearchHelpBinding + +class ColorSearchHelpActivity : BaseActivity() { + + override val handleStatusBarThemeColorAutomatically = false + + private lateinit var mWebView: CommonMarkdownView + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + ActivityColorSearchHelpBinding.inflate(layoutInflater).also { binding -> + setContentView(binding.root) + val webView = binding.webView.also { + mWebView = it + it.settings.apply { + setSupportMultipleWindows(true) + @SuppressLint("SetJavaScriptEnabled") + javaScriptEnabled = true + } + } + if (ViewUtils.isNightModeYes(this)) { + WebViewUtils.adaptDarkMode(webView) + } + webView.loadMarkdown(getContent(R.raw.color_search_help_document)) + WebViewUtils.excludeWebViewFromStatusBarAndNavigationBar(binding.webViewParent, webView) + } + } + + override fun onStart() { + super.onStart() + setUpStatusBarAppearanceLightByNightMode() + } + + private fun getContent(contentResourceId: Int) = runCatching { + resources.openRawResource(contentResourceId).bufferedReader(Charsets.UTF_8).use { + it.lineSequence().joinToString(System.lineSeparator()) + } + }.getOrElse { getString(R.string.error_failed_to_render_content) } + +} diff --git a/app/src/main/java/org/autojs/autojs/theme/app/ColorSelectActivity.kt b/app/src/main/java/org/autojs/autojs/theme/app/ColorSelectActivity.kt index 8aebe4f9..11d77e8e 100644 --- a/app/src/main/java/org/autojs/autojs/theme/app/ColorSelectActivity.kt +++ b/app/src/main/java/org/autojs/autojs/theme/app/ColorSelectActivity.kt @@ -56,10 +56,11 @@ class ColorSelectActivity : ColorSelectBaseActivity() { when (item.itemId) { R.id.action_toggle_color_select_layout -> { isLegacyLayout = false - startActivity(this) + startActivity(this, isToggled = true) + true } } - return true + return super.onOptionsItemSelected(item) } } \ No newline at end of file diff --git a/app/src/main/java/org/autojs/autojs/theme/app/ColorSelectBaseActivity.kt b/app/src/main/java/org/autojs/autojs/theme/app/ColorSelectBaseActivity.kt index 907f36a7..7d829102 100644 --- a/app/src/main/java/org/autojs/autojs/theme/app/ColorSelectBaseActivity.kt +++ b/app/src/main/java/org/autojs/autojs/theme/app/ColorSelectBaseActivity.kt @@ -30,6 +30,7 @@ import org.autojs.autojs.theme.app.ColorLibrariesActivity.Companion.PresetColorI import org.autojs.autojs.theme.app.ColorLibrariesActivity.Companion.PresetColorLibrary import org.autojs.autojs.theme.app.ColorLibrariesActivity.Companion.presetColorLibraries import org.autojs.autojs.ui.BaseActivity +import org.autojs.autojs.ui.main.drawer.DrawerFragment.Companion.Event.ThemeColorLayoutSwitchedEvent import org.autojs.autojs.util.ColorUtils import org.autojs.autojs.util.ViewUtils import org.autojs.autojs.util.ViewUtils.onceGlobalLayout @@ -38,6 +39,8 @@ import org.autojs.autojs.util.ViewUtils.setMenuIconsColorByColorLuminance import org.autojs.autojs.util.ViewUtils.setNavigationIconColorByColorLuminance import org.autojs.autojs.util.ViewUtils.setTitlesTextColorByColorLuminance import org.autojs.autojs6.R +import org.autojs.autojs6.R.string.text_search_color +import org.greenrobot.eventbus.EventBus import java.util.* import kotlin.math.hypot import kotlin.properties.Delegates @@ -67,8 +70,13 @@ abstract class ColorSelectBaseActivity : BaseActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) + mTitle = intent.getStringExtra("title") ?: getString(R.string.text_theme_color) currentColor = intent.getIntExtra("currentColor", ThemeColorManager.colorPrimary) + + if (intent.getBooleanExtra("isToggled", false)) { + EventBus.getDefault().post(object : ThemeColorLayoutSwitchedEvent {}) + } } protected fun setUpToolbar(toolbar: Toolbar) { @@ -100,32 +108,19 @@ abstract class ColorSelectBaseActivity : BaseActivity() { return setUpSearchMenu(menuItem.actionView, onQueryTextSimpleListener) } - private fun setUpSearchMenu(searchView: View?, onQueryTextSimpleListener: (text: String?) -> Unit): SearchView? { - return setUpSearchMenu(searchView, object : SearchView.OnQueryTextListener { - override fun onQueryTextSubmit(query: String?) = true.also { onQueryTextSimpleListener(query) } - override fun onQueryTextChange(newText: String?) = true.also { onQueryTextSimpleListener(newText) } - }) - } - - protected fun setUpSearchMenu(menu: Menu, onQueryTextListener: SearchView.OnQueryTextListener? = null, onMenuItemActionExpand: (item: MenuItem) -> Unit = {}, onMenuItemActionCollapse: (item: MenuItem) -> Unit = {}): SearchView? { - val menuItem = menu.findItem(R.id.action_search_color) ?: return null - menuItem.setOnActionExpandListener(object : MenuItem.OnActionExpandListener { - override fun onMenuItemActionExpand(item: MenuItem) = true.also { onMenuItemActionExpand(item) } - override fun onMenuItemActionCollapse(item: MenuItem) = true.also { onMenuItemActionCollapse(item) } - }) - return setUpSearchMenu(menuItem.actionView, onQueryTextListener) - } - - private fun setUpSearchMenu(searchView: View?, onQueryTextListener: SearchView.OnQueryTextListener? = null): SearchView? { - if (searchView !is SearchView) return null - return searchView.apply { - mSearchView = this - queryHint = context.getString(R.string.text_search_color) - setOnQueryTextListener(onQueryTextListener) + private fun setUpSearchMenu(searchView: View?, onQueryTextSimpleListener: (text: String?) -> Unit): SearchView? = when (searchView) { + !is SearchView -> null + else -> searchView.also { + mSearchView = it + it.queryHint = it.context.getString(text_search_color) + it.setOnQueryTextListener(object : SearchView.OnQueryTextListener { + override fun onQueryTextSubmit(query: String?) = true.also { onQueryTextSimpleListener(query) } + override fun onQueryTextChange(newText: String?) = true.also { onQueryTextSimpleListener(newText) } + }) } } - protected open fun getSubtitle(): String? = null + protected open fun getSubtitle(withHexSuffix: Boolean = true): String? = null override fun initThemeColors() { super.initThemeColors() @@ -152,7 +147,7 @@ abstract class ColorSelectBaseActivity : BaseActivity() { protected fun updateAppBarColorContent(colorTo: Int) { setColors(colorTo) - updateSubtitle() + updateSubtitle(mToolbar) if (hasWindowFocus()) ViewAnimationUtils.createCircularReveal( /* view = */ mAppBarLayout, /* centerX = */ mAppBarLayout.left, @@ -165,8 +160,8 @@ abstract class ColorSelectBaseActivity : BaseActivity() { } } - protected fun updateSubtitle() { - mToolbar.post { mToolbar.subtitle = getSubtitle() } + protected fun updateSubtitle(toolbar: Toolbar) { + toolbar.post { toolbar.subtitle = getSubtitle() } } private fun setColors(colorTo: Int) { @@ -249,12 +244,18 @@ abstract class ColorSelectBaseActivity : BaseActivity() { .show(supportFragmentManager, "ColorPickerTagForColorLibraries") } - protected fun showColorDetails(color: Int, titleRes: Int = R.string.dialog_title_color_details) { - ColorInfoDialogManager.showColorInfoDialog(this, color, titleRes) + protected fun showColorDetails(color: Int, title: String? = null) { + ColorInfoDialogManager.showColorInfoDialog(this, color, title) } protected fun showThemeColorDetails() { - showColorDetails(ThemeColorManager.colorPrimary, R.string.dialog_title_theme_color_details) + showColorDetails(ThemeColorManager.colorPrimary, getSubtitle(false)) + } + + protected fun showColorSearchHelp() { + Intent(this, ColorSearchHelpActivity::class.java) + .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK) + .let { startActivity(it) } } private fun savePrefsForLibraries() { @@ -363,7 +364,7 @@ abstract class ColorSelectBaseActivity : BaseActivity() { } @JvmStatic - fun startActivity(context: Context) { + fun startActivity(context: Context, isToggled: Boolean = false) { val cls = when (isLegacyLayout) { true -> ColorSelectActivity::class.java else -> ColorLibrariesActivity::class.java @@ -374,6 +375,7 @@ abstract class ColorSelectBaseActivity : BaseActivity() { } val intent = Intent(context, cls).apply { putExtra("title", context.getString(titleRes)) + putExtra("isToggled", isToggled) } if (context is ColorSelectBaseActivity) { intent.putExtra("currentColor", context.currentColor) @@ -383,21 +385,26 @@ abstract class ColorSelectBaseActivity : BaseActivity() { } @JvmStatic - fun getCurrentColorSummary(context: Context, isBrief: Boolean = false): String = when { + fun getCurrentColorSummary(context: Context, withIdentifierPrefix: Boolean = true, withHexSuffix: Boolean = true): String = when { isLegacyLayout -> when (val index = Pref.getInt(KEY_LEGACY_SELECTED_COLOR_INDEX, defaultColorPosition)) { SELECT_NONE -> { val colorInt = ThemeColorManager.colorPrimary - ColorUtils.toString(colorInt).uppercase() + ColorUtils.toString(colorInt) } else -> { val colorItem = colorItemsLegacy[index] val (colorRes, nameRes) = colorItem val name = context.getString(nameRes) - val colorInt = when (index) { - customColorPosition -> Pref.getInt(KEY_CUSTOM_COLOR, context.getColor(R.color.custom_color_default)) - else -> context.getColor(colorRes) + when { + !withHexSuffix -> name + else -> { + val colorInt = when (index) { + customColorPosition -> Pref.getInt(KEY_CUSTOM_COLOR, context.getColor(R.color.custom_color_default)) + else -> context.getColor(colorRes) + } + "$name [${ColorUtils.toString(colorInt)}]" + } } - "$name [${ColorUtils.toString(colorInt).uppercase()}]" } } else -> { @@ -466,14 +473,26 @@ abstract class ColorSelectBaseActivity : BaseActivity() { } } } - val colorString = ColorUtils.toString(colorInt).uppercase() + val colorString = ColorUtils.toString(colorInt) when { identifier != null && colorName != null -> when { - isBrief -> "$colorName [$colorString]" - else -> "$identifier | $colorName [$colorString]" + withIdentifierPrefix -> when { + withHexSuffix -> "$identifier | $colorName [$colorString]" + else -> "$identifier | $colorName" + } + else -> when { + withHexSuffix -> "$colorName [$colorString]" + else -> colorName + } + } + identifier != null -> when { + withIdentifierPrefix -> "$identifier | $colorString" + else -> colorString + } + colorName != null -> when { + withHexSuffix -> "$colorName [$colorString]" + else -> colorName } - identifier != null -> "$identifier | $colorString" - colorName != null -> "$colorName [$colorString]" else -> colorString } } diff --git a/app/src/main/java/org/autojs/autojs/ui/doc/DocumentationActivity.kt b/app/src/main/java/org/autojs/autojs/ui/doc/DocumentationActivity.kt index e4b4651e..a85b070b 100644 --- a/app/src/main/java/org/autojs/autojs/ui/doc/DocumentationActivity.kt +++ b/app/src/main/java/org/autojs/autojs/ui/doc/DocumentationActivity.kt @@ -31,7 +31,7 @@ class DocumentationActivity : BaseActivity() { if (ViewUtils.isNightModeYes(this)) { WebViewUtils.adaptDarkMode(webView) } - WebViewUtils.excludeWebViewFromStatusBarAndNavigationBar(ewebView) + WebViewUtils.excludeWebViewFromStatusBarAndNavigationBar(ewebView, webView) webView.loadUrl(intent.getStringExtra(EXTRA_URL) ?: getUrl("index.html")) } } diff --git a/app/src/main/java/org/autojs/autojs/ui/doc/DocumentationFragment.kt b/app/src/main/java/org/autojs/autojs/ui/doc/DocumentationFragment.kt index 231469f2..747fcc28 100644 --- a/app/src/main/java/org/autojs/autojs/ui/doc/DocumentationFragment.kt +++ b/app/src/main/java/org/autojs/autojs/ui/doc/DocumentationFragment.kt @@ -59,7 +59,7 @@ open class DocumentationFragment : ViewPagerFragment(ROTATION_GONE), BackPressed if (ViewUtils.isNightModeYes(requireContext())) { WebViewUtils.adaptDarkMode(webView) } - WebViewUtils.excludeWebViewFromNavigationBar(ewebView) + WebViewUtils.excludeWebViewFromNavigationBar(ewebView, webView) } } restoreViewStates() diff --git a/app/src/main/java/org/autojs/autojs/ui/main/drawer/DrawerFragment.kt b/app/src/main/java/org/autojs/autojs/ui/main/drawer/DrawerFragment.kt index 1fad5621..3b17ad9c 100644 --- a/app/src/main/java/org/autojs/autojs/ui/main/drawer/DrawerFragment.kt +++ b/app/src/main/java/org/autojs/autojs/ui/main/drawer/DrawerFragment.kt @@ -104,10 +104,11 @@ open class DrawerFragment : Fragment() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) + EventBus.getDefault().register(this) + @SuppressLint("NotifyDataSetChanged") ThemeChangeNotifier.themeChanged.observe(this) { - mThemeColorItem.subtitle = ColorSelectBaseActivity.getCurrentColorSummary(mContext) - mDrawerMenu.adapter?.notifyDataSetChanged() + updateThemeColorSubtitle() } mContext = requireContext() @@ -405,26 +406,17 @@ open class DrawerFragment : Fragment() { binding.exit.setOnClickListener { mActivity.exitCompletely() } } - override fun onStart() { - super.onStart() - EventBus.getDefault().register(this) - } - override fun onResume() { super.onResume() syncMenuItemStates() } - override fun onStop() { - super.onStop() - EventBus.getDefault().unregister(this) - } - override fun onDestroy() { super.onDestroy() mClientModeItem.dispose() mServerModeItem.dispose() // mActivity.unregisterReceiver(mReceiver) + EventBus.getDefault().unregister(this) } override fun onDestroyView() { @@ -459,6 +451,17 @@ open class DrawerFragment : Fragment() { mAccessibilityServiceItem.sync() } + @Subscribe + @Suppress("unused", "UNUSED_PARAMETER") + fun onThemeColorLayoutSwitched(event: Event.ThemeColorLayoutSwitchedEvent) { + updateThemeColorSubtitle() + } + + private fun updateThemeColorSubtitle() { + mThemeColorItem.subtitle = ColorSelectBaseActivity.getCurrentColorSummary(mContext) + (mDrawerMenu.adapter as? DrawerMenuAdapter)?.notifyItemChanged(mThemeColorItem) + } + private fun initMenuItems() { drawerMenuAdapter = listOf( DrawerMenuGroup(R.string.text_service), @@ -535,6 +538,7 @@ open class DrawerFragment : Fragment() { interface OnDrawerOpened interface OnDrawerClosed interface AccessibilityServiceStateChangedEvent + interface ThemeColorLayoutSwitchedEvent } } diff --git a/app/src/main/java/org/autojs/autojs/ui/main/drawer/DrawerMenuAdapter.java b/app/src/main/java/org/autojs/autojs/ui/main/drawer/DrawerMenuAdapter.java index fccf1de6..f2baf9cd 100644 --- a/app/src/main/java/org/autojs/autojs/ui/main/drawer/DrawerMenuAdapter.java +++ b/app/src/main/java/org/autojs/autojs/ui/main/drawer/DrawerMenuAdapter.java @@ -37,7 +37,6 @@ public class DrawerMenuAdapter extends RecyclerView.Adapter { "#${c.substring(2)}" } else -> "#$c" } + return if (uppercase) hex.uppercase() else hex.lowercase() } @ColorInt diff --git a/app/src/main/java/org/autojs/autojs/util/WebViewUtils.kt b/app/src/main/java/org/autojs/autojs/util/WebViewUtils.kt index b922e951..98a871a8 100644 --- a/app/src/main/java/org/autojs/autojs/util/WebViewUtils.kt +++ b/app/src/main/java/org/autojs/autojs/util/WebViewUtils.kt @@ -1,14 +1,15 @@ package org.autojs.autojs.util +import android.view.View import android.webkit.WebView import android.webkit.WebViewClient import androidx.core.graphics.Insets +import androidx.core.view.ViewCompat import androidx.core.view.WindowInsetsCompat import androidx.webkit.WebSettingsCompat import androidx.webkit.WebViewFeature.ALGORITHMIC_DARKENING import androidx.webkit.WebViewFeature.FORCE_DARK import androidx.webkit.WebViewFeature.isFeatureSupported -import org.autojs.autojs.ui.widget.EWebView import org.intellij.lang.annotations.Language /** @@ -67,21 +68,19 @@ class WebViewUtils { webView.evaluateJavascript(darkModeCSS, null) } - fun excludeWebViewFromNavigationBar(ewebView: EWebView) { - excludeWebViewFromSystemBars(ewebView, excludeStatusBar = false, excludeNavigationBar = true) + fun excludeWebViewFromNavigationBar(webViewWrapper: View, webView: WebView) { + excludeWebViewFromSystemBars(webViewWrapper, webView, excludeStatusBar = false, excludeNavigationBar = true) } - fun excludeWebViewFromStatusBarAndNavigationBar(ewebView: EWebView) { - excludeWebViewFromSystemBars(ewebView, excludeStatusBar = true, excludeNavigationBar = true) + fun excludeWebViewFromStatusBarAndNavigationBar(webViewWrapper: View, webView: WebView) { + excludeWebViewFromSystemBars(webViewWrapper, webView, excludeStatusBar = true, excludeNavigationBar = true) } @Suppress("SameParameterValue") - private fun excludeWebViewFromSystemBars(ewebView: EWebView, excludeStatusBar: Boolean, excludeNavigationBar: Boolean) { - val webView = ewebView.webView + private fun excludeWebViewFromSystemBars(webViewWrapper: View, webView: WebView, excludeStatusBar: Boolean, excludeNavigationBar: Boolean) { var mSystemBarInsets: Insets? = null - ewebView.setOnApplyWindowInsetsListener { v, insets -> - @Suppress("DEPRECATION") - val systemBarInsets = WindowInsetsCompat.toWindowInsetsCompat(insets).systemWindowInsets.also { + ViewCompat.setOnApplyWindowInsetsListener(webViewWrapper) { v, insets -> + val systemBarInsets = insets.getInsets(WindowInsetsCompat.Type.systemBars()).also { mSystemBarInsets = it } if (excludeStatusBar) { @@ -97,18 +96,23 @@ class WebViewUtils { override fun onPageFinished(view: WebView?, url: String?) { super.onPageFinished(view, url) val systemBarInsets = mSystemBarInsets ?: return - // @Hint by SuperMonster003 on Mar 12, 2025. - // ! Inject JavaScript code for document body with adding a bottom padding - // ! to ensure that content won't be covered by nav bar when scrolling to the end. - // ! zh-CN: 注入 JavaScript, 为 body 添加底部 padding, 确保滚动到底部时导航栏不遮挡内容. - @Language("JavaScript") - val jsCode = """document.body.style.paddingBottom = "${systemBarInsets.bottom}px";""" - webView.evaluateJavascript(jsCode, null) + val webView = view ?: return + adjustBodyPaddingToAvoidNavOverlay(webView, systemBarInsets) } } } } + private fun adjustBodyPaddingToAvoidNavOverlay(webView: WebView, systemBarInsets: Insets) { + // @Hint by SuperMonster003 on Mar 12, 2025. + // ! Inject JavaScript code for document body with adding a bottom padding + // ! to ensure that content won't be covered by nav bar when scrolling to the end. + // ! zh-CN: 注入 JavaScript, 为 body 添加底部 padding, 确保滚动到底部时导航栏不遮挡内容. + @Language("JavaScript") + val jsCode = """document.body.style.paddingBottom = "${systemBarInsets.bottom}px";""" + webView.evaluateJavascript(jsCode, null) + } + } } \ No newline at end of file diff --git a/app/src/main/res/layout/activity_apps_icon_select.xml b/app/src/main/res/layout/activity_apps_icon_select.xml index dacda6a4..54d3883f 100644 --- a/app/src/main/res/layout/activity_apps_icon_select.xml +++ b/app/src/main/res/layout/activity_apps_icon_select.xml @@ -1,30 +1,30 @@ - + + android:id="@+id/app_bar" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:theme="@style/AppTheme.AppBarOverlay" + android:fitsSystemWindows="true"> + android:id="@+id/toolbar" + android:layout_width="match_parent" + android:layout_height="?attr/actionBarSize" + android:theme="@style/ToolBarStyle" + app:popupTheme="@style/AppTheme.PopupOverlay" /> + android:id="@+id/apps" + android:layout_width="match_parent" + android:layout_height="match_parent" /> \ No newline at end of file diff --git a/app/src/main/res/layout/activity_color_search_help.xml b/app/src/main/res/layout/activity_color_search_help.xml new file mode 100644 index 00000000..22809fc8 --- /dev/null +++ b/app/src/main/res/layout/activity_color_search_help.xml @@ -0,0 +1,20 @@ + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index 16ed63d4..3ee61712 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -1,5 +1,6 @@ - + + @@ -43,12 +49,6 @@ - - @@ -62,4 +62,10 @@ + + \ No newline at end of file diff --git a/app/src/main/res/menu/menu_color_library.xml b/app/src/main/res/menu/menu_color_library.xml index d8f9d2b0..7418bbd5 100644 --- a/app/src/main/res/menu/menu_color_library.xml +++ b/app/src/main/res/menu/menu_color_library.xml @@ -18,4 +18,10 @@ android:icon="@drawable/ic_locate" app:showAsAction="never" /> + + \ No newline at end of file diff --git a/app/src/main/res/raw-ar/color_search_help_document.md b/app/src/main/res/raw-ar/color_search_help_document.md new file mode 100644 index 00000000..0bb60b14 --- /dev/null +++ b/app/src/main/res/raw-ar/color_search_help_document.md @@ -0,0 +1,83 @@ +## بحث الألوان + +يدعم البحث عن الألوان خمسة أساليب مختلفة، وجميعها لا تميز بين الأحرف الكبيرة والصغيرة. + +### 1. اسم اللون (اللغة الحالية) + +ابحث باستخدام اسم اللون كما يتم عرضه حاليًا في اللغة الحالية. + +#### المثال 1.1: أحمر + +يطابق جميع أسماء الألوان التي تحتوي على "أحمر"، مثل "أحمر"، "أحمر برتقالي"، "أحمر قوي"، "أحمر (200)"، إلخ. + +#### المثال 1.2: أزرق50 + +يطابق جميع أسماء الألوان التي تحتوي على "أزرق50". أثناء المطابقة، يتم تجاهل كل الأحرف غير الأبجدية أو الأرقام (مثل المسافات، والأقواس، والشرطات المائلة، والواصلات، إلخ). وبالتالي، يمكن أن يطابق "أزرق50" الألوان "أزرق (50)"، "أزرق (500)"، "الأزرق الفاتح (50)" + +### 2. اسم اللون (بالإنجليزية) + +استخدم الاسم الإنجليزي للون ككلمة مفتاحية للبحث. + +#### المثال 2.1: red + +يطابق جميع أسماء الألوان بالإنجليزية التي تحتوي على "red"، مثل "أحمر"، "أحمر قوي"، "أحمر برتقالي"، إلخ. حتى إذا لم تكن لغة العرض الحالية هي الإنجليزية، لا يزال بإمكانك البحث عن اللون المقابل باستخدام الكلمة المفتاحية الإنجليزية. + +#### المثال 2.2: blue50 + +يشبه المثال 1.2، إذ يمكن أن يطابق "أزرق (50)"، "أزرق (500)" و"الأزرق الفاتح (50)"، إلخ. + +### 3. HEX + +ابدأ بـ "#" لتفعيل وضع البحث بنمط HEX. + +#### المثال 3.1: #FF007F + +يطابق اللون الذي لديه قيمة HEX "#FF007F"، على سبيل المثال "وردي". + +#### المثال 3.2: #FF + +يطابق كل الألوان التي تبدأ قيمة HEX الخاصة بها بـ "#FF"، مثل "#FF8099"، "#FF00CB"، "#FFFAFA"، إلخ. + +### 4. التعبيرات النمطية (Regular Expression) + +ابدأ بـ "/" وأنهِ بـ "/" لتفعيل البحث باستخدام التعبير النمطي (يشبه بناء جملة JavaScript). + +#### المثال 4.1: /أحمر|برتقالي|أصفر/ + +يطابق جميع أسماء الألوان التي تحتوي على "أحمر" أو "برتقالي" أو "أصفر". + +#### المثال 4.2: /\b50\b/ + +يطابق جميع أسماء الألوان التي تحتوي على "50" مع حدود كلمة على كلا الجانبين، مثل "أحمر (50)"، "بينك (50)"، "أصفر (50)"، إلخ، ولكنه لا يشمل "أحمر (500)" أو "بينك (500)"، إلخ. + +#### المثال 4.3: /red|orange/ + +على غرار المثال 2.2، يطابق التعبير النمطي أيضًا أسماء الألوان بالإنجليزية. /red|orange/ يمكنه مطابقة "أحمر قوي"، "برتقالي محترق"، "أحمر بنفسجي باهت"، إلخ. + +### 5. التعبيرات النمطية لـ HEX + +ابدأ بـ "#/" وأنهِ بـ "/" لتفعيل البحث باستخدام التعبير النمطي على قيم HEX. + +#### المثال 5.1: #/FF\b/ + +يطابق جميع قيم HEX التي تحتوي على "FF" في نهاية الكلمة (مثل "#xxxxFF")، على سبيل المثال "#2962FF"، "#D94DFF"، "#F0F8FF"، إلخ. + +#### المثال 5.2: #/#FF/ + +يطابق جميع قيم HEX التي تحتوي على "#FF"، مماثل للمثال 3.2، بشكل "#FFxxxx". + +#### المثال 5.3: #/#..FF/ + +يطابق جميع قيم HEX التي تحتوي على "FF" في المنتصف (بشكل "#xxFFxx")، مثل "#CCFF00"، "#66FFE6"، "#00FF7F"، إلخ. + +#### المثال 5.4: #/#((? + + + أسود + أزرق + سيان / أكوا + رمادي داكن + رمادي + أخضر / ليموني + رمادي فاتح + ماجنتا / فوشيا + عنابي + كحلي + زيتي + أرجواني + أحمر + فضي + فيروزي + أبيض + أصفر + + \ No newline at end of file diff --git a/app/src/main/res/values-ar/css_colors_string.xml b/app/src/main/res/values-ar/css_colors_string.xml new file mode 100644 index 00000000..51977270 --- /dev/null +++ b/app/src/main/res/values-ar/css_colors_string.xml @@ -0,0 +1,144 @@ + + + + أزرق أليس + أبيض عتيق + اكوامارين + أزرق سماوي + بيج + بيسكوي + أسود + لوز مسلوق + أزرق + أزرق بنفسجي + بني + خشب صلب + أزرق الكاديت + شارترواز + شوكولاتة + مرجاني + أزرق زهرة الذرة + حرير الذرة + قرمزي + سماوي / أكوا + أزرق غامق + أزرق سماوي داكن + أقحوان ذهبي داكن + رمادي داكن + أخضر داكن + كاكي داكن + أرجواني داكن + أخضر زيتوني داكن + برتقالي داكن + أوركيد داكن + أحمر داكن + سلمون داكن + أخضر بحري داكن + أزرق صخري داكن + رمادي صخري داكن + تركواز داكن + بنفسجي داكن + وردي عميق + سماوي عميق + رمادي باهت + أزرق دودجر + طوب ناري + أبيض زهراني + أخضر غابي + جينسبورو + أبيض شبح + ذهبي + ذرة ذهبية + رمادي + أخضر + أخضر أصفر + حنك蜜يدو + وردي حار + أحمر هندي + نيلي + عاجي + كاكي + خزامى + احمر خزامى + أخضر العشب + شيفون الليمون + أزرق فاتح + مرجان فاتح + سماوي فاتح + أصفر ذهبي فاتح + رمادي فاتح + أخضر فاتح + وردي فاتح + سلمون فاتح + أخضر بحري فاتح + سماوي فاتح + رمادي صخري فاتح + أزرق فولاذي فاتح + أصفر فاتح + ليموني + أخضر ليموني + كتان + ماجента / فوشيا + خمري + أكوامارين متوسط + أزرق متوسط + ماجنتا خزامى متوسط + أوركيد متوسط + البنفسجي متوسط + أخضر بحري متوسط + أزرق صخري متوسط + أخضر ربيعي متوسط + تركواز متوسط + أحمر بنفسجي متوسط + أزرق منتصف الليل + كريما النعناع + وردي ضبابي + موكاسين + أبيض نافاجو + كحلي / أزرق داكن + دانتيل قديم + زيتوني + زيتوني عسلي + برتقالي + أحمر برتقالي + أوركيد / أوركيد بنفسجي + أقحوان ذهبي شاحب + أخضر شاحب + تركواز شاحب + أحمر بنفسجي شاحب + كريمة البابايا + البطريرك + فوشاء الخوخ + بيرو + وردي + أزرق بودرة + بنفسجي ريبيكا + أحمر + بني وردي + أزرق ملكي + بني سرج + سلمون + بني رملي + صدفة بحرية + أخضر بحري + سيينا + فضة + أزرق سماوي + أزرق صخري + رمادي صخري + ثلج + أخضر ربيعي + أزرق فولاذي + أسمر فاتح + تحابي + شوك الهند + أحمر طماطم + تركواز + بنفسجي + قمح + أبيض + دخان أبيض + أصفر + أخضر مصفر + + \ No newline at end of file diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 6151abc2..e8ec9f0d 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -897,10 +897,14 @@ اسم الحزمة (جارٍ الحساب...) اسم الإصدار (جارٍ الحساب...) رمز الإصدار (جارٍ الحساب...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -912,7 +916,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -941,5 +945,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-ar/web_colors_string.xml b/app/src/main/res/values-ar/web_colors_string.xml new file mode 100644 index 00000000..4c47245d --- /dev/null +++ b/app/src/main/res/values-ar/web_colors_string.xml @@ -0,0 +1,253 @@ + + + + أليس أزرق + أليزارين قرمزي + عنبر + أميثيست + أبيض عتيق + أخضر التفاح + مشمشي + أكوا + أكوامارين + أزرق أكوا + لازوردي + أزرق بيبي + وردي بيبي + بيج + بيسك + أسود + لوز مبيض + أزرق + أرجواني أزرق + أخضر ساطع + برونزي + بني + بورغندي + خشب متين + برتقالي محترق + أزرق كاديت + جمل + كاميليا + أصفر كناري + أحمر كاردينال + قرمزي + سيلادون + سيريز + أزرق سيروليان + أصفر شمبانيا + شارترِيز + شوكولاتة + أصفر كرومي + كليماطيس + أزرق كوبالت + أخضر كوبالت + بني جوز الهند + قهوة + مرجاني + وردي مرجاني + أزرق زهرة الذرة + حرير الذرة + كريم + قرمزي + سيان + أزرق سيان + أزرق داكن + سيان داكن + ذهباري داكن + رمادي داكن + أخضر داكن + كاكي داكن + أرجواني داكن + أزرق معدني داكن + أخضر زيتوني داكن + برتقالي داكن + أوركيد داكن + أزرق مسحوق داكن + أحمر داكن + سلمون داكن + أخضر بحري داكن + أزرق طباشيري داكن + رمادي طباشيري داكن + تركواز داكن + بنفسجي داكن + وردي عميق + أزرق سماوي عميق + رمادي خافت + أزرق دودجر + زمرد + طوب نار + فلامينغو + أبيض زهري + أخضر أوراق الشجر + أخضر غابي + أوراق جديدة + فوشيا + جينزبورو + أبيض شبح + ذهبي + ذهبي + أخضر عشبي + رمادي + بنفسجي رمادي + أخضر + أخضر أصفر + هيليوتروب + هاني ديو + برتقال عسل + أزرق الأفق + وردي ساخن + أحمر هندي + نيلي + أزرق كلاين الدولي + رمادي الحديد + عاجي + أخضر اللبلاب + ياسمين + كاكي + لازورد + لافندر + أزرق لافندر / بيريوينكل + وردي لافندر + ماجنتا لافندر + ضباب لافندر + أخضر عشبي + قماش الليمون + أزرق فاتح + مرجاني فاتح + سيان فاتح + أصفر ذهبي فاتح + رمادي فاتح + أخضر فاتح + كاكي فاتح + وردي فاتح + سلمون فاتح + أخضر بحري فاتح + أزرق سماوي فاتح + رمادي طباشيري فاتح + أزرق فولاذي فاتح + بنفسجي فاتح + أصفر فاتح + ليلك + أخضر ليموني / فاتح + أخضر ليموني + كتان + ماجنتا + وردي ماجنتا + ملكيت + ملو + مارغولد + أزرق بحري + كرُم + موف + أكوامارين متوسط + أزرق متوسط + ماجنتا لافندر متوسط + أوركيد متوسط + بنفسجي متوسط + أخضر بحري متوسط + أزرق طباشيري متوسط + أخضر الربيع متوسط + تركواز متوسط + أحمر بنفسجي متوسط + أزرق منتصف الليل + ميموزا + أزرق معدني + بنفسجي معدني + نعناعي + كريمة النعناع + وردة ضبابية + موكاسين + أصفر القمر + أخضر الطحلب + خردلي + أبيض نافاجو + كحلي + أوخر + دانتيل قديم + وردي قديم + زيتوني + زيتوني داكن + موف الأوبرا + برتقالي + أحمر برتقالي + أوركيد + بنفسجي باهت + أزرق باهت + دنيم باهت + أصفر ذهبي باهت + أخضر باهت + أوخر باهت + تركواز باهت + أحمر بنفسجي باهت + بنسي + بابايا + بطريرك + خوخي + لؤلؤ خوخي + خوخي نفخ + أزرق الطاووس + أخضر الطاووس + وردي لؤلؤي + خرمي + بيرو + وردي + برقوقي + أزرق مسحوق + أزرق بروسيا + بنفسجي + أحمر + وردي + وردي وردي + بني وردي + أزرق ملكي + ياقوتي + بني سرج + سلموني + وردي سلموني + أزرق سالفيا + بيج رملي + بني رملي + ياقوت أزرق + سكس أزرق + قرمزي فاقع + صدفة بحرية + أخضر بحري + سيبيا + وردي صدفة + سيينا + فضي + أزرق سماوي + أزرق طباشيري + رمادي طباشيري + ثلجي + أحمر سبينيل + أخضر الربيع + أزرق فولاذي + أزرق قوي + أحمر قوي + برتقالي شمسي + تان + يوسفي + أصفر يوسفي + تركوازي + خدِّيد + طماطم + برتقالي استوائي + فيروز + أزرق فيروز + أخضر فيروز + أزرق بحري + قرمزي فاتح + أخضر ملكيت فاتح + بنفسجي + فيريدين + أزرق ودجوود + قمح + أبيض + دخان أبيض + ويستيريا + أصفر + أخضر أصفر + + \ No newline at end of file diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml index e86abf9e..dd4fd2cd 100644 --- a/app/src/main/res/values-en/strings.xml +++ b/app/src/main/res/values-en/strings.xml @@ -114,7 +114,7 @@ Failed to rename Cannot retrieve the battery state Use more characters for the password - Those passwords didn\'t match + Those passwords did not match Failed to check for updates Colon must follow a valid IP address Compass cannot be null @@ -210,7 +210,7 @@ Unknown result type {name: %s, params: %s} Unknown selector {name: %s, type: %s} Unknown type: %s - File doesn\'t exist or readable: %s + File does not exist or readable: %s AutoJs6 foreground service Click to launch AutoJs6 AutoJs6 foreground service @@ -485,7 +485,7 @@ File already exists File explorer File name - File doesn\'t exist + File does not exist File \"%1$s\" is not an executable script Files transfer Find @@ -893,10 +893,14 @@ Package name (computing...) Version name (computing...) Version code (computing...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -908,7 +912,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -937,5 +941,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-es/android_colors_string.xml b/app/src/main/res/values-es/android_colors_string.xml new file mode 100644 index 00000000..da6d9268 --- /dev/null +++ b/app/src/main/res/values-es/android_colors_string.xml @@ -0,0 +1,22 @@ + + + + Negro + Azul + Cian / Aguamarina + Gris oscuro + Gris + Verde / Lima + Gris claro + Magenta / Fucsia + Marrón + Marino + Oliva + Púrpura + Rojo + Plata + Verde azulado + Blanco + Amarillo + + \ No newline at end of file diff --git a/app/src/main/res/values-es/css_colors_string.xml b/app/src/main/res/values-es/css_colors_string.xml new file mode 100644 index 00000000..cd632eb7 --- /dev/null +++ b/app/src/main/res/values-es/css_colors_string.xml @@ -0,0 +1,144 @@ + + + + Azul Alicia + Blanco antiguo + Aguamarina + Azure + Beige + Bizcocho + Negro + Almendra blanchida + Azul + Azul violeta + Marrón + Madera robusta + Azul cadete + Chartreuse + Chocolate + Coral + Azul aciano + Seda de maíz + Carmesí + Cian / Aqua + Azul oscuro + Cian oscuro + Solidago oscuro + Gris oscuro + Verde oscuro + Caqui oscuro + Magenta oscuro + Verde oliva oscuro + Naranja oscuro + Orquídea oscura + Rojo oscuro + Salmón oscuro + Verde mar oscuro + Azul pizarra oscuro + Gris pizarra oscuro + Turquesa oscura + Violeta oscuro + Rosa intenso + Azul cielo intenso + Gris tenue + Azul Dodger + Ladrillo + Blanco floral + Verde bosque + Gainsboro + Blanco fantasma + Oro + Vara de oro + Gris + Verde + Verde amarillo + Melón + Rosa vivo + Rojo índigo + Índigo + Marfil + Caqui + Lavanda + Rubor de lavanda + Verde césped + Bizcocho de limón + Azul claro + Coral claro + Cian claro + Amarillo dorado claro + Gris claro + Verde claro + Rosa claro + Salmón claro + Verde mar claro + Azul cielo claro + Gris pizarra claro + Azul acero claro + Amarillo claro + Lima + Verde lima + Lino + Magenta / Fucsia + Marrón oscuro + Aguamarina media + Azul medio + Magenta lavanda media + Orquídea media + Púrpura media + Verde mar medio + Azul pizarra medio + Verde primavera medio + Turquesa media + Violeta rojizo medio + Azul medianoche + Crema de menta + Rosa empolvado + Mocasín + Blanco navajo + Azul marino / Azul oscuro + Encaje antiguo + Oliva + Verde oliva oliva + Naranja + Rojo anaranjado + Orquídea / Orquídea violeta + Vara de oro pálido + Verde pálido + Turquesa pálida + Rojo violeta pálido + Batán de papaya + Patriarca + Melocotón esponjado + Perú + Rosa + Azul polvo + Púrpura Rebecca + Rojo + Marrón rosado + Azul real / Azul real + Marrón silla + Salmón + Marrón arena + Concha marina + Verde mar + Siena + Plata + Azul cielo + Azul pizarra + Gris pizarra + Nieve + Verde primavera + Azul acero + Marrón claro + Verde azulado + Cardo + Rojo tomate + Turquesa + Violeta + Trigo + Blanco + Humo blanco + Amarillo + Verde amarillento + + \ No newline at end of file diff --git a/app/src/main/res/values-es/material_design_colors_string.xml b/app/src/main/res/values-es/material_design_colors_string.xml index 696fcdfb..9c72b434 100644 --- a/app/src/main/res/values-es/material_design_colors_string.xml +++ b/app/src/main/res/values-es/material_design_colors_string.xml @@ -278,9 +278,9 @@ Gris (200) Gris (300) Gris (400) - Grises (500) - Grises (600) - Grises (700) + Gris (500) + Gris (600) + Gris (700) Gris (800) Gris (900) Negro (1000) diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 734d4419..45ff66b2 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -896,10 +896,14 @@ Nombre del paquete (Calculando...) Nombre de la versión (Calculando...) Código de la versión (Calculando...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -911,7 +915,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -940,5 +944,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-es/web_colors_string.xml b/app/src/main/res/values-es/web_colors_string.xml new file mode 100644 index 00000000..3a753cae --- /dev/null +++ b/app/src/main/res/values-es/web_colors_string.xml @@ -0,0 +1,253 @@ + + + + Azul Alicia + Carmesí alizarina + Ámbar + Amatista + Blanco antiguo + Verde manzana + Albaricoque + Agua + Agua marina + Azul agua + Azul celeste + Azul bebé + Rosa bebé + Beige + Bizcocho + Negro + Almendra blanqueada + Azul + Azul violeta + Verde brillante + Bronce + Marrón + Borgoña + Madera robusta + Naranja quemado + Azul cadete + Camello + Rojo camelia + Amarillo canario + Rojo cardenal + Carmesí + Celadón + Cereza roja + Azul cerúleo + Amarillo champán + Chartreuse + Chocolate + Amarillo cromo + Clemátide + Azul cobalto + Verde cobalto + Marrón coco + Café + Coral + Rosa coral + Azul aciano + Seda de maíz + Crema + Carmesí + Cian + Azul cian + Azul oscuro + Cian oscuro + Vara dorada oscura + Gris oscuro + Verde oscuro + Caqui oscuro + Magenta oscuro + Azul mineral oscuro + Verde oliva oscuro + Naranja oscuro + Orquídea oscura + Azul polvo oscuro + Rojo oscuro + Salmón oscuro + Verde mar oscuro + Azul pizarra oscuro + Gris pizarra oscuro + Turquesa oscuro + Violeta oscuro + Rosa profundo + Azul cielo profundo + Gris apagado + Azul Dodger + Esmeralda + Ladrillo fuego + Rosa flamenco + Blanco floral + Verde follaje + Verde bosque + Verde hojas frescas + Fucsia + Gris Gainsboro + Blanco fantasma + Dorado + Vara dorada + Verde hierba + Gris + Púrpura grisáceo + Verde + Verde amarillento + Heliotropo + Melón + Naranja miel + Azul horizonte + Rosa intenso + Rojo indio + Índigo + Azul Klein internacional + Gris hierro + Marfil + Verde hiedra + Jazmín + Caqui + Lapislázuli + Lavanda + Azul lavanda / Pervinca + Rosa lavanda + Magenta lavanda + Niebla lavanda + Verde césped + Limón chiffon + Azul claro + Coral claro + Cian claro + Amarillo oro pálido + Gris claro + Verde claro + Caqui claro + Rosa claro + Salmón claro + Verde mar claro + Azul cielo claro + Gris pizarra claro + Azul acero claro + Violeta claro + Amarillo claro + Lila + Lima / Lima claro + Verde lima + Lino + Magenta + Rosa magenta + Malaquita + Malva + Caléndula + Azul marino + Granate + Malva + Aguamarina media + Azul medio + Magenta lavanda medio + Orquídea media + Morado medio + Verde mar medio + Azul pizarra medio + Verde primavera medio + Turquesa medio + Rojo violeta medio + Azul medianoche + Mimosa + Azul mineral + Violeta mineral + Menta + Crema de menta + Rosa brumoso + Mocasín + Amarillo lunar + Verde musgo + Mostaza + Blanco Navajo + Azul marino + Ocre + Encaje antiguo + Rosa antiguo + Oliva + Verde oliva opaco + Malva opéra + Naranja + Rojo anaranjado + Orquídea + Lila pálido + Azul pálido + Denim pálido + Vara dorada pálida + Verde pálido + Ocre pálido + Turquesa pálido + Rojo violeta pálido + Pensamiento + Batido de papaya + Patriarca + Durazno + Perla de durazno + Durazno empolvado + Azul pavo real + Verde pavo real + Rosa perla + Caqui + Perú + Rosa + Ciruela + Azul polvo + Azul prusiano + Púrpura + Rojo + Rosa + Rosa pastel + Marrón rosado + Azul real + Rubí + Marrón silla + Salmón + Rosa salmón + Azul salvia + Beige arena + Marrón arena + Zafiro + Azul Saxe + Escarlata + Concha marina + Verde mar + Sepia + Rosa concha + Siena + Plateado + Azul cielo + Azul pizarra + Gris pizarra + Nieve + Rojo espinela + Verde primavera + Azul acero + Azul intenso + Rojo intenso + Naranja sol + Bronceado + Mandarina + Amarillo mandarina + Verde azulado + Cardo + Tomate + Naranja tropical + Turquesa + Azul turquesa + Verde turquesa + Ultramarino + Carmesí + Verde malaquita muy claro + Violeta + Viridiano + Azul Wedgwood + Trigo + Blanco + Humo blanco + Glicina + Amarillo + Verde amarillento + + \ No newline at end of file diff --git a/app/src/main/res/values-fr/android_colors_string.xml b/app/src/main/res/values-fr/android_colors_string.xml new file mode 100644 index 00000000..02b84217 --- /dev/null +++ b/app/src/main/res/values-fr/android_colors_string.xml @@ -0,0 +1,22 @@ + + + + Noir + Bleu + Cyan / Aigue-marine + Gris foncé + Gris + Vert / Citron vert + Gris clair + Magenta / Fuchsia + Marron + Bleu marine + Olive + Violet + Rouge + Argenté + Sarcelle + Blanc + Jaune + + \ No newline at end of file diff --git a/app/src/main/res/values-fr/css_colors_string.xml b/app/src/main/res/values-fr/css_colors_string.xml new file mode 100644 index 00000000..8193f18b --- /dev/null +++ b/app/src/main/res/values-fr/css_colors_string.xml @@ -0,0 +1,144 @@ + + + + Bleu Alice + Blanc antique + Aigue-marine + Azur + Beige + Biscuit + Noir + Amande blanchie + Bleu + Bleu violet + Marron + Bois robuste + Bleu cadet + Chartreuse + Chocolat + Corail + Bleu bleuet + Soie de maïs + Carmin + Cyan / Aqua + Bleu marine + Cyan foncé + Solidage foncé + Gris foncé + Vert foncé + Kaki foncé + Magenta foncé + Vert olive foncé + Orange foncé + Orchidée foncée + Rouge foncé + Saumon foncé + Vert mer foncé + Bleu ardoise foncé + Gris ardoise foncé + Turquoise foncé + Violet foncé + Rose profond + Bleu ciel profond + Gris clair + Bleu Dodger + Brique de feu + Blanc floral + Vert forêt + Gainsboro + Blanc fantôme + Or + Aurore + Gris + Vert + Jaune-vert + Melon d\'eau + Rose chaud + Rouge indien + Indigo + Ivoire + Kaki + Lavande + Rose lavande + Vert pelouse + Chiffon citron + Bleu clair + Corail clair + Cyan clair + Jaune doré clair + Gris clair + Vert clair + Rose clair + Saumon clair + Vert mer clair + Bleu ciel clair + Gris ardoise clair + Bleu acier clair + Jaune clair + Citron vert + Vert citron + Lin + Magenta / Fuchsia + Marron foncé + Aigue-marine moyenne + Bleu moyen + Magenta lavand moyenne + Orchidée moyenne + Pourpre moyen + Vert mer moyen + Bleu ardoise moyen + Vert vert de printemps moyen + Turquoise moyen + Rouge violette moyen + Bleu minuit + Crème de menthe + Rose brumeux + Mocassin + Blanc Navajo + Bleu marine / Bleu foncé + Dentelle ancienne + Olive + Olive drab + Orange + Rouge orangé + Orchidée / Orchidée violette + Solidago pâle + Vert pâle + Turquoise pâle + Rouge violet pâle + Crème de papaye + Patriarche + Pêche mousse + Pérou + Rose + Bleu poudre + Pourpre Rebecca + Rouge + Marron rosé + Bleu royal + Marron selle + Saumon + Marron sable + Coquille + Vert mer + Sienne + Argent + Bleu ciel + Bleu ardoise + Gris ardoise + Neige + Vert printemps + Bleu acier + Brun clair + Sarcelle + Chardon + Rouge tomate + Turquoise + Violet + Blé + Blanc + Fumée blanche + Jaune + Jaune-vert + + \ No newline at end of file diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index da65bf54..eda8c2c5 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -896,10 +896,14 @@ Nom du paquet (en cours de calcul...) Nom de la version (en cours de calcul...) Code de version (en cours de calcul...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -911,7 +915,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -940,5 +944,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-fr/web_colors_string.xml b/app/src/main/res/values-fr/web_colors_string.xml new file mode 100644 index 00000000..d1b52f64 --- /dev/null +++ b/app/src/main/res/values-fr/web_colors_string.xml @@ -0,0 +1,253 @@ + + + + Bleu Alice + Rouge alizarine + Ambre + Améthyste + Blanc antique + Vert pomme + Abricot + Aqua + Aigue-marine + Bleu aqua + Azur + Bleu bébé + Rose bébé + Beige + Biscuit + Noir + Amande blanchie + Bleu + Bleu-violet + Vert vif + Bronze + Marron + Bourgogne + Bois de couleur bois + Orange brûlé + Bleu cadet + Camel + Rouge camélia + Jaune canari + Rouge cardinal + Carmin + ou Celadon + Cerise + Bleu céruléen + Jaune champagne + Chartreuse + Chocolat + Jaune chrome + Violet de clématite + Bleu cobalt + Vert cobalt + Brun coco + Café + Corail + Rose corail + Bleu cornflower + Soie de maïs + Crème + Cramoisi + Cyan + Bleu cyan + Bleu foncé + Cyan foncé + Verge d’or foncée + Gris foncé + Vert foncé + Kaki foncé + Magenta foncé + Bleu minéral foncé + Vert olive foncé + Orange foncé + Orchidée foncée + Bleu poudre foncé + Rouge foncé + Saumon foncé + Vert mer foncé + Bleu ardoise foncé + Gris ardoise foncé + Turquoise foncé + Violet foncé + Rose profond + Bleu ciel profond + Gris moyen + Bleu Dodger + Émeraude + Brique de feu + Rose flamant + Blanc floral + Vert feuillage + Vert forêt + Vert feuilles fraîches + Fuchsia + Gris Gainsboro + Blanc fantôme + Doré / Or + Verge d’or + Vert gazon + Gris + Violet grisâtre + Vert + Jaune-vert + Héliotrope + Melon miel + Orange miel + Bleu horizon + Rose vif + Rouge indien + Indigo + Bleu Klein international + Gris fer + Ivoire + Vert lierre + Jasmin + Kaki + Lapis-lazuli + Lavande + Bleu lavande / Pervenche + Rose lavande + Magenta lavande + Brume de lavande + Vert pelouse + Chiffon citron + Bleu clair + Corail clair + Cyan clair + Jaune goldenrod clair + Gris clair + Vert clair + Kaki clair + Rose clair + Saumon clair + Vert mer clair + Bleu ciel clair + Gris ardoise clair + Bleu acier clair + Violet clair + Jaune clair + Lilas + Citron vert / Citron vert clair + Vert citron + Lin + Magenta + Rose magenta + Malachite + Rose malva + Jaune souci + Bleu marine + Marron + Mauve + Aigue-marine moyenne + Bleu moyen + Magenta lavande moyen + Orchidée moyenne + Violet moyen + Vert mer moyen + Bleu ardoise moyen + Vert printemps moyen + Turquoise moyen + Rouge violet moyen + Bleu minuit + Mimosa + Bleu minéral + Violet minéral + Menthe + Crème de menthe + Rose brumeuse + Mocassin + Jaune lunaire + Vert mousse + Moutarde + Blanc Navajo + Bleu marine + Ocre + Dentelle ancienne + Rose antique + Olive + Olive terne + Mauve opéra + Orange + Rouge orangé + Orchidée + Lilas pâle + Bleu pâle + Denim pâle + Verge d’or pâle + Vert pâle + Ocre pâle + Turquoise pâle + Rouge violet pâle + Pensée + Papaye fouettée + Patriarche + Pêche + Pêche perle + Pêche pastel + Bleu paon + Vert paon + Rose perle + Kaki + Pérou + Rose + Prune + Bleu poudré + Bleu de Prusse + Pourpre + Rouge + Rose + Rose pâle + Brun rosé + Bleu royal + Rubis + Brun selle + Saumon + Rose saumon + Bleu sauge + Beige sable + Brun sable + Saphir + Bleu Saxe + Écarlate + Coquillage + Vert mer + Sépia + Rose coquille + Terre de Sienne + Argent + Bleu ciel + Bleu ardoise + Gris ardoise + Neige + Rouge spinelle + Vert printemps + Bleu acier + Bleu intense + Rouge intense + Orange soleil + Bronze + Mandarine + Jaune mandarine + Vert sarcelle + Chardon + Tomate + Orange tropicale + Turquoise + Bleu turquoise + Vert turquoise + Ultramarine + Vermillon + Vert malachite très clair + Violet + Viridien + Bleu Wedgwood + Blé + Blanc + Fumée blanche + Glycine + Jaune + Vert jaunâtre + + \ No newline at end of file diff --git a/app/src/main/res/values-ja/android_colors_string.xml b/app/src/main/res/values-ja/android_colors_string.xml new file mode 100644 index 00000000..24663f41 --- /dev/null +++ b/app/src/main/res/values-ja/android_colors_string.xml @@ -0,0 +1,22 @@ + + + + ブラック + ブルー + シアン / アクア + ダークグレー + グレー + グリーン / ライム + ライトグレー + マゼンタ / フューシャ + マルーン + ネイビー + オリーブ + パープル + レッド + シルバー + ティール + ホワイト + イエロー + + \ No newline at end of file diff --git a/app/src/main/res/values-ja/css_colors_string.xml b/app/src/main/res/values-ja/css_colors_string.xml new file mode 100644 index 00000000..efd77641 --- /dev/null +++ b/app/src/main/res/values-ja/css_colors_string.xml @@ -0,0 +1,144 @@ + + + + アリスブルー + アンティークホワイト + アクアマリン + アジュール + ベージュ + ビスク + ブラック + ブランチドアーモンド + ブルー + ブルーバイオレット + ブラウン + バーリウッド + カデットブルー + シャルトリューズ + チョコレート + コーラル + コーンフラワーブルー + コーンシルク + クリムゾン + シアン / アクア + ダークブルー + ダークシアン + ダークゴールデンロッド + ダークグレー + ダークグリーン + ダークカーキ + ダークマゼンタ + ダークオリーブグリーン + ダークオレンジ + ダークオーキッド + ダークレッド + ダークサーモン + ダークシーグリーン + ダークスレートブルー + ダークスレートグレー + ダークターコイズ + ダークバイオレット + ディープピンク + ディープスカイブルー + 薄暗いグレー + ドジャーブルー + ファイヤーブリック + フローラルホワイト + フォレストグリーン + ゲインズボロ + ゴーストホワイト + ゴールド + ゴールデンロッド + グレー + グリーン + グリーンイエロー + ハニーデュー + ホットピンク + インディアンレッド + インディゴ + アイボリー + カーキ + ラベンダー + ラベンダーブラッシュ + 芝生の緑 + レモンシフォン + ライトブルー + ライトコーラル + ライトシアン + ライトゴールデンロッドイエロー + ライトグレー + ライトグリーン + ライトピンク + ライトサーモン + ライトシーグリーン + ライトスカイブルー + ライトスレートグレー + ライトスチールブルー + ライトイエロー + ライム + ライムグリーン + リネン + マゼンタ / フクシア + マルーン + ミディアムアクアマリン + ミディアムブルー + ミディアムラベンダーマゼンタ + ミディアムオーキッド + ミディアムパープル + ミディアムシーグリーン + ミディアムスレートブルー + ミディアムスプリンググリーン + ミディアムターコイズ + ミディアムバイオレットレッド + ミッドナイトブルー + ミントクリーム + ミスティーローズ + モカシン + ナバホホワイト + ネイビーブルー / ダークブルー + オールドレース + オリーブ + オリーブドラブ + オレンジ + オレンジレッド + オーキッド / オーキッドパープル + ペールゴールデンロッド + ペールグリーン + ペールターコイズ + ペールバイオレットレッド + パパイヤウィップ + パトリアーク + ピーチパフ + ペルー + ピンク + パウダーブルー + レベッカパープル + レッド + ロージーブラウン + ロイヤルブルー + サドルブラウン + サーモン + サンドブラウン + シェル + シーグリーン + シエナ + シルバー + スカイブルー + スレートブルー + スレートグレー + スノー + スプリンググリーン + スティールブルー + タン + ティール + シスル + トマト + ターコイズ + バイオレット + 小麦 + ホワイト + ホワイトスモーク + イエロー + 黄緑 + + \ No newline at end of file diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index c03aa67d..16bc4ec0 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -896,10 +896,14 @@ パッケージ名 (計算中...) バージョン名 (計算中...) バージョンコード (計算中...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -911,7 +915,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -940,5 +944,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-ja/web_colors_string.xml b/app/src/main/res/values-ja/web_colors_string.xml new file mode 100644 index 00000000..4b009c70 --- /dev/null +++ b/app/src/main/res/values-ja/web_colors_string.xml @@ -0,0 +1,253 @@ + + + + アリスブルー + アリザリンクリムゾン + アンバー + アメジスト + アンティークホワイト + アップルグリーン + アプリコット + アクア + アクアマリン + アクアブルー + アジュール + ベイビーブルー + ベイビーピンク + ベージュ + ビスク + ブラック + ブランチドアーモンド + ブルー + ブルーバイオレット + ブライトグリーン + ブロンズ + ブラウン + バーガンディ + バーリーウッド + バーントオレンジ + カデットブルー + キャメル + カメリア + カナリアイエロー + カーディナルレッド + カーマイン + セラドン + セリーズ + セルリアンブルー + シャンパンイエロー + シャルトリューズ + チョコレート + クロムイエロー + クレマチス + コバルトブルー + コバルトグリーン + ココナッツブラウン + コーヒー + コーラル + コーラルピンク + コーンフラワーブルー + コーンシルク + クリーム + クリムゾン + シアン + シアンブルー + ダークブルー + ダークシアン + ダークゴールデンロッド + ダークグレー + ダークグリーン + ダークカーキ + ダークマゼンタ + ダークミネラルブルー + ダークオリーブグリーン + ダークオレンジ + ダークオーキッド + ダークパウダーブルー + ダークレッド + ダークサーモン + ダークシーグリーン + ダークスレートブルー + ダークスレートグレー + ダークターコイズ + ダークバイオレット + ディープピンク + ディープスカイブルー + ディムグレー + ドッジャーブルー + エメラルド + ファイアブリック + フラミンゴ + フローラルホワイト + フォリッジグリーン + フォレストグリーン + フレッシュリーブス + フクシア + ゲインズボロ + ゴーストホワイト + ゴールド + ゴールデンロッド + グラスグリーン + グレー + グレイッシュパープル + グリーン + グリーンイエロー + ヘリオトロープ + ハニーデュー + ハニーオレンジ + ホライゾンブルー + ホットピンク + インディアンレッド + インディゴ + インターナショナルクラインブルー + アイアングレイ + アイボリー + アイビーグリーン + ジャスミン + カーキ + ラピスラズリ + ラベンダー + ラベンダーブルー / ペリウィンクル + ラベンダーブラッシュ + ラベンダーマゼンタ + ラベンダーミスト + ローングリーン + レモンシフォン + ライトブルー + ライトコーラル + ライトシアン + ライトゴールデンロッドイエロー + ライトグレー + ライトグリーン + ライトカーキ + ライトピンク + ライトサーモン + ライトシーグリーン + ライトスカイブルー + ライトスレートグレー + ライトスティールブルー + ライトバイオレット + ライトイエロー + ライラック + ライム / ライトライム + ライムグリーン + リネン + マゼンタ + マゼンタローズ + マラカイト + マロー + マリーゴールド + マリンブルー + マルーン + モーブ + ミディアムアクアマリン + ミディアムブルー + ミディアムラベンダーマゼンタ + ミディアムオーキッド + ミディアムパープル + ミディアムシーグリーン + ミディアムスレートブルー + ミディアムスプリンググリーン + ミディアムターコイズ + ミディアムバイオレットレッド + ミッドナイトブルー + ミモザ + ミネラルブルー + ミネラルバイオレット + ミント + ミントクリーム + ミスティローズ + モカシン + ムーンイエロー + モスグリーン + マスタード + ナバホホワイト + ネイビー + オーカー + オールドレース + オールドローズ + オリーブ + オリーブドラブ + オペラモーブ + オレンジ + オレンジレッド + オーキッド + ペールライラック + ペールブルー + ペールデニム + ペールゴールデンロッド + ペールグリーン + ペールオーカー + ペールターコイズ + ペールバイオレットレッド + パンジー + パパイヤホイップ + パトリアーク + ピーチ + ピーチパール + ピーチパフ + ピーコックブルー + ピーコックグリーン + パールピンク + パーシモン + ペルー + ピンク + プラム + パウダーブルー + プルシアンブルー + パープル + レッド + ローズ + ローズピンク + ロージーブラウン + ロイヤルブルー + ルビー + サドルブラウン + サーモン + サーモンピンク + サルビアブルー + サンドベージュ + サンドブラウン + サファイア + サックスブルー + スカーレット + シーシェル + シーグリーン + セピア + シェルピンク + シエナ + シルバー + スカイブルー + スレートブルー + スレートグレー + スノー + スピネルレッド + スプリンググリーン + スティールブルー + ストロングブルー + ストロングレッド + サンオレンジ + タン + タンジェリン + タンジェリンイエロー + ティール + シスル + トマト + トロピカルオレンジ + ターコイズ + ターコイズブルー + ターコイズグリーン + ウルトラマリン + バーミリオン + ベリーライトマラカイトグリーン + バイオレット + ヴァイリディアン + ウェッジウッドブルー + ウィート + ホワイト + ホワイトスモーク + ウィステリア + イエロー + イエローグリーン + + \ No newline at end of file diff --git a/app/src/main/res/values-ko/android_colors_string.xml b/app/src/main/res/values-ko/android_colors_string.xml new file mode 100644 index 00000000..70be6d1b --- /dev/null +++ b/app/src/main/res/values-ko/android_colors_string.xml @@ -0,0 +1,22 @@ + + + + 검정 + 파랑 + 시안 / 아쿠아 + 짙은 회색 + 회색 + 녹색 / 라임 + 밝은 회색 + 마젠타 / 퓨시아 + 마룬 + 남색 + 올리브 + 보라 + 레드 + 은색 + 청록 + 하양 + 옐로우 + + \ No newline at end of file diff --git a/app/src/main/res/values-ko/css_colors_string.xml b/app/src/main/res/values-ko/css_colors_string.xml new file mode 100644 index 00000000..c81cf3e5 --- /dev/null +++ b/app/src/main/res/values-ko/css_colors_string.xml @@ -0,0 +1,144 @@ + + + + 앨리스 블루 + 골동품 화이트 + 아쿠아마린 + 애쥬얼 블루 + 베이지 + 비스크 + 검정색 + 해야 먹는 아몬드 + 블루 + 블루 바이올렛 + 브라운 + 벌리 우드 + 카뎃 블루 + 샤르트뢰즈 + 초콜릿 + 산호색 + 콘플라워 블루 + 콘실크 + 크림슨 + 청록 / 아쿠아 + 다크 블루 + 다크 시안 + 다크 골든로드 + 다크 그레이 + 다크 그린 + 다크 카키 + 다크 마젠타 + 다크 올리브 그린 + 다크 오렌지 + 다크 오키드 + 다크 레드 + 다크 살몬 + 다크 씨 그린 + 다크 슬레이트 블루 + 다크 슬레이트 그레이 + 다크 터쿼이즈 + 다크 바이올렛 + 딥 핑크 + 딥 스카이 블루 + 흐린 회색 + 도저 블루 + 파이어 브릭 + 플로럴 화이트 + 포레스트 그린 + 게인즈보로 + 고스트 화이트 + 골드 + 골든로드 + 회색 + 그린 + 그린 옐로우 + 허니듀 + 핫 핑크 + 인디언 레드 + 인디고 + 아이보리 + 카키 + 라벤더 + 라벤더 블러시 + 잔디 그린 + 레몬 시폰 + 라이트 블루 + 라이트 코랄 + 라이트 시안 + 라이트 골든로드 옐로우 + 라이트 그레이 + 라이트 그린 + 라이트 핑크 + 라이트 살몬 + 라이트 씨 그린 + 라이트 스카이 블루 + | 라이트 슬레이트 그레이| + 라이트 스틸 블루 + 라이트 옐로우 + 라임 + 라임 그린 + 린넨 + 마젠타 / 푸시아 + 마룬 + 미디엄 아쿠아마린 + 미디엄 블루 + 미디엄 라벤더 마젠타 + 미디엄 오키드 + 미디엄 퍼플 + 미디엄 씨 그린 + 미디엄 슬레이트 블루 + 미디엄 스프링 그린 + 미디엄 터쿼이즈 + 미디엄 바이올렛 레드 + 미드나잇 블루 + 민트 크림 + 미스티 로즈 + 모카신 + 나바호 화이트 + 네이비 / 다크 블루 + 올드 레이스 + 올리브 + 올리브 드랩 + 오렌지 + 오렌지 레드 + 오키드 / 오키드 바이올렛 + 페일 골든로드 + 페일 그린 + 페일 터쿼이즈 + 페일 바이올렛 레드 + 파파야 휘핑 + 패트리아크 + 피치 퍼프 + 페루 + 핑크 + 파우더 블루 + 레베카 퍼플 + 레드 + 로지 브라운 + 로얄 블루 + 새들 브라운 + 살몬 + 샌드 브라운 + 시셸 + 씨 그린 + 시에나 + 실버 + 스카이 블루 + 슬레이트 블루 + 슬레이트 그레이 + 스노우 + 스프링 그린 + 스틸 블루 + + + 엉겅퀴색 + 토마토 레드 + 터쿼이즈 + 바이올렛 + + 화이트 + 화이트 스모크 + 옐로우 + 옐로우 그린 + + \ No newline at end of file diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index e25eab42..cc39ff92 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -897,10 +897,14 @@ 패키지 이름 (계산 중...) 버전 이름 (계산 중...) 버전 코드 (계산 중...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -912,7 +916,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -941,5 +945,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-ko/web_colors_string.xml b/app/src/main/res/values-ko/web_colors_string.xml new file mode 100644 index 00000000..5e65191a --- /dev/null +++ b/app/src/main/res/values-ko/web_colors_string.xml @@ -0,0 +1,253 @@ + + + + 앨리스 블루 + 알리자리 크림슨 + 앰버 + 자수정 + 앤티크 화이트 + 애플 그린 + 살구색 + 아쿠아 + 아쿠아마린 + 아쿠아 블루 + 아주르 + 베이비 블루 + 베이비 핑크 + 베이지 + 비스크 + 블랙 + 블랜치드 아몬드 + 블루 + 블루 바이올렛 + 브라이트 그린 + 브론즈 + 브라운 + 버건디 + 버리우드 + 번트 오렌지 + 카데트 블루 + 카멜 + 동백꽃색 + 카나리아 옐로우 + 카디널 레드 + 카민 + 셀ラ돈 + 세리즈 + 세룰리언 블루 + 샴페인 옐로우 + 샤르트뢰즈 + 초콜릿 + 크롬 옐로우 + 클레마티스 + 코발트 블루 + 코발트 그린 + 코코넛 브라운 + 커피 + 코랄 + 코랄 핑크 + 콘플라워 블루 + 콘 실크 + 크림 + 크림슨 + 사이언 + 사이언 블루 + 다크 블루 + 다크 사이언 + 다크 골든로드 + 다크 그레이 + 다크 그린 + 다크 카키 + 다크 마젠타 + 다크 미네랄 블루 + 다크 올리브 그린 + 다크 오렌지 + 다크 오키드 + 다크 파우더 블루 + 다크 레드 + 다크 살몬 + 다크 씨 그린 + 다크 슬레이트 블루 + 다크 슬레이트 그레이 + 다크 터쿼이즈 + 다크 바이올렛 + 딥 핑크 + 딥 스카이 블루 + 딤 그레이 + 도저 블루 + 에메랄드 + 파이어 브릭 + 플라밍고 + 플로랄 화이트 + 포리지 그린 + 포레스트 그린 + 프레시 리브스 + 푸시아 + 게인즈보로 + 고스트 화이트 + 골드 + 골든로드 + 그라스 그린 + 그레이 + 회보라색 + 그린 + 그린 옐로우 + 헬리오트로프 + 허니듀 + 허니 오렌지 + 호라이즌 블루 + 핫 핑크 + 인디언 레드 + 인디고 + 인터내셔널 클라인 블루 + 아이언 그레이 + 아이보리 + 아이비 그린 + 재스민 + 카키 + 라피스 라줄리 + 라벤더 + 라벤더 블루 / 페리윙클 + 라벤더 블러쉬 + 라벤더 마젠타 + 라벤더 미스트 + 론 그린 + 레몬 시폰 + 라이트 블루 + 라이트 코랄 + 라이트 사이언 + 라이트 골든로드 옐로우 + 라이트 그레이 + 라이트 그린 + 라이트 카키 + 라이트 핑크 + 라이트 살몬 + 라이트 씨 그린 + 라이트 스카이 블루 + 라이트 슬레이트 그레이 + 라이트 스틸 블루 + 라이트 바이올렛 + 라이트 옐로우 + 라일락 + 라임 / 라이트 라임 + 라임 그린 + 리넨 + 마젠타 + 마젠타 로즈 + 말라카이트 + 말로우 + 메리골드 + 마린 블루 + 마룬 + 모브 + 미디엄 아쿠아마린 + 미디엄 블루 + 미디엄 라벤더 마젠타 + 미디엄 오키드 + 미디엄 퍼플 + 미디엄 씨 그린 + 미디엄 슬레이트 블루 + 미디엄 스프링 그린 + 미디엄 터쿼이즈 + 미디엄 바이올렛 레드 + 미드나잇 블루 + 미모사 + 미네랄 블루 + 미네랄 바이올렛 + 민트 + 민트 크림 + 미스티 로즈 + 모카신 + 문 옐로우 + 모스 그린 + 머스타드 + 나바호 화이트 + 네이비 + 오커 + 올드 레이스 + 올드 로즈 + 올리브 + 올리브 드랩 + 오페라 모브 + 오렌지 + 오렌지 레드 + 오키드 + 페일 라일락 + 페일 블루 + 페일 데님 + 페일 골든로드 + 페일 그린 + 페일 오커 + 페일 터쿼이즈 + 페일 바이올렛 레드 + 팬지 + 파파야 휘핑 + 패트리아크 + 피치 + 피치 펄 + 피치 퍼프 + 피콕 블루 + 피콕 그린 + 펄 핑크 + 감색 + 페루 + 핑크 + 플럼 + 파우더 블루 + 프로시안 블루 + 퍼플 + 레드 + 로즈 + 로즈 핑크 + 로지 브라운 + 로열 블루 + 루비 + 새들 브라운 + 살몬 + 살몬 핑크 + 살비아 블루 + 샌드 베이지 + 샌드 브라운 + 사파이어 + 색스 블루 + 스칼렛 + 시쉘 + 씨 그린 + 세피아 + 쉘 핑크 + 시에나 + 실버 + 스카이 블루 + 슬레이트 블루 + 슬레이트 그레이 + 스노우 + 스피넬 레드 + 스프링 그린 + 스틸 블루 + 스트롱 블루 + 스트롱 레드 + 선 오렌지 + + 탠저린 + 탠저린 옐로우 + + 시슬 + 토마토 + 트로피컬 오렌지 + 터쿼이즈 + 터쿼이즈 블루 + 터쿼이즈 그린 + 울트라마린 + 버밀리언 + 매우 옅은 말라카이트 그린 + 바이올렛 + 버리디언 + 웨지우드 블루 + 밀색 + 화이트 + 화이트 스모크 + 위스테리아 + 옐로우 + 옐로우 그린 + + \ No newline at end of file diff --git a/app/src/main/res/values-ru/android_colors_string.xml b/app/src/main/res/values-ru/android_colors_string.xml new file mode 100644 index 00000000..08328156 --- /dev/null +++ b/app/src/main/res/values-ru/android_colors_string.xml @@ -0,0 +1,22 @@ + + + + Черный + Синий + Циан / Аква + Темно-серый + Серый + Зеленый / Лайм + Светло-серый + Маджента / Фуксия + Бордовый + Темно-синий + Оливковый + Фиолетовый + Красный + Серебряный + Бирюзовый + Белый + Желтый + + \ No newline at end of file diff --git a/app/src/main/res/values-ru/css_colors_string.xml b/app/src/main/res/values-ru/css_colors_string.xml new file mode 100644 index 00000000..3d49efcb --- /dev/null +++ b/app/src/main/res/values-ru/css_colors_string.xml @@ -0,0 +1,144 @@ + + + + Алис-синий + Античный белый + Аквамарин + Лазурный + Бежевый + Бисквиты + Черный + Бланшированный миндаль + Синий + Синевато-фиолетовый + Коричневый + Крепкое дерево + Кадетов синий + Шартрез + Шоколадный + Коралловый + Василек-синий + Кукурузный шелк + Малиновый + Циан / Аква + Темно-синий + Темно-цианый + Темно-золотистый рог + Темно-серый + Темно-зеленый + Темный хаки + Темный магента + Темно-оливковый зеленый + Темно-оранжевый + Темный орхидея + Темно-красный + Темный лосось + Темно-морской зеленый + Темно-сланцевый синий + Темно-сланцевый серый + Темно-бирюзовый + Темно-фиолетовый + Глубокий розовый + Глубокий небесно-голубой + Тускло-серый + Доджер-синий + Кирпичный красный + Цветочный белый + Лесной зеленый + Гейнсборо + Призрачный белый + Золото + Золотой шатер + Серый + Зеленый + Зеленовато-желтый + Медовая роса + Ярко-розовый + Индийский красный + Индиго + Слоновая кость + Хаки + Лавандовый + Лавандово-розовый + Газонно-зеленый + Лимонный шифон + Светло-синий + Светло-коралловый + Светлый циан + Светло-золотистый желтый + Светло-серый + Светло-зеленый + Светло-розовый + Светло-лососевый + Светло-морской зеленый + Светло-небесно-голубой + Светло-сланцевый серый + Светло-стальной синий + Светло-желтый + Лаймовый + Лаймово-зеленый + Лён + Магента / Фуксия + Бургундский + Средний аквамарин + Средний синий + Средний лавандово-малиновый + Средняя орхидея + Средний фиолетовый + Средне-морской зеленый + Средний сланцевый синий + Средний весенне-зеленый + Средний бирюзовый + Средне-фиолетово-красный + Полуночный синий + Мятный крем + Туманный розовый + Мокасин + Навахо белый + Темно-синий + Старое кружево + Оливковый + Оливково-зелёный + Оранжевый + Оранжево-красный + Орхидея / Орхидея фиолетовая + Бледно-золотистый рог + Бледно-зелёный + Бледно-бирюзовый + Бледно-фиолетово-красный + Батон папайя + Патриарх + Персиковый пух + Перу + Розовый + Пудрово-голубой + Ребекка-пурпурный + Красный + Розово-коричневый + Королевский синий + Седлово-коричневый + Лососевый + Песочно-коричневый + Раковина + Морской зеленый + Сиеновый + Серебро + Небесно-голубой + Сланцево-синий + Сланцево-серый + Снег + Весенне-зеленый + Стальной синий + Рыжевато-коричневый + Бирюзовый + Чертополох + Помидорный красный + Бирюзовый + Фиолетовый + Пшеница + Белый + Белый дым + Желтый + Желто-зеленый + + \ No newline at end of file diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 29990496..b66b3fbe 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -896,10 +896,14 @@ Имя пакета (Вычисление...) Название версии (Вычисление...) Код версии (Вычисление...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -911,7 +915,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -940,5 +944,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-ru/web_colors_string.xml b/app/src/main/res/values-ru/web_colors_string.xml new file mode 100644 index 00000000..4d37714d --- /dev/null +++ b/app/src/main/res/values-ru/web_colors_string.xml @@ -0,0 +1,253 @@ + + + + Голубой Элис + Ализариновый малиновый + Янтарный + Аметистовый + Антикварный белый + Яблочно-зелёный + Абрикосовый + Аква + Аквамариновый + Голубой аква + Лазурный + Нежно-голубой + Нежно-розовый + Бежевый + Бисквитный + Чёрный + Обесцвеченный миндальный + Синий + Сине-фиолетовый + Ярко-зелёный + Бронзовый + Коричневый + Бургундский + Древесный + Обожжённый оранжевый + Кадетский синий + Цвет верблюда + Красный камелии + Канареечно-жёлтый + Кардинально-красный + Карминовый + Целадоновый + Вишнёвый + Церулеановый синий + Шампанский жёлтый + Шартрез + Шоколадный + Хром-жёлтый + Фиолетовый клематиса + Кобальтовый синий + Кобальтово-зелёный + Кокосовый коричневый + Цвет кофе + Коралловый + Розовый коралловый + Васильковый + Цвет кукурузного шелка + Кремовый + Алый + Циан + Голубой циан + Тёмно-синий + Тёмно-циановый + Тёмный золотарник + Тёмно-серый + Тёмно-зелёный + Тёмный хаки + Тёмная маджента + Тёмно-минеральный синий + Тёмно-оливковый + Тёмно-оранжевый + Тёмная орхидея + Тёмно-пудровый синий + Тёмно-красный + Тёмный лососевый + Тёмно-морской зелёный + Тёмно-сланцевый синий + Тёмно-сланцевый серый + Тёмный бирюзовый + Тёмный фиолетовый + Глубокий розовый + Глубокий небесно-голубой + Тускло-серый + Синий Dodger + Изумрудный + Кирпичный красный + Розовый фламинго + Флорал-вайт + Зеленый лиственный + Лесной зелёный + Свежелистый + Фуксия + Гейнсборо + Призрачный белый + Золотой / Золото + Золотарник + Травянисто-зелёный + Серый + Серовато-фиолетовый + Зелёный + Желто-зелёный + Гелиотропный + Медовая роса + Медовый оранжевый + Голубой горизонта + Ярко-розовый + Индийский красный + Индиго + Международный клин-синий + Железно-серый + Слоновая кость + Плющ зелёный + Жасминовый + Хаки + Лазуритовый + Лавандовый + Голубой лаванды / Перивинкль + Лавандовый румянец + Лавандовая маджента + Лавандовый туман + Газонно-зелёный + Лимонный шифон + Светло-синий + Светлый коралловый + Светлый циановый + Светлый золотарниковый жёлтый + Светло-серый + Светло-зелёный + Светлый хаки + Светло-розовый + Светлый лососевый + Светлый морской зелёный + Светло-небесно-голубой + Светло-сланцевый серый + Светлый стальной синий + Светлый фиолетовый + Светло-жёлтый + Сиреневый + Лаймовый / Светлый лаймовый + Зеленый лайм + Льняной + Магента + Розовая магента + Малахитовый + Мальвовый + Бархатцевый жёлтый + Морской синий + Тёмно-бордовый + Розовато-фиолетовый + Средний аквамарин + Средне-синий + Средняя лавандовая маджента + Средняя орхидея + Средний пурпурный + Средний морской зелёный + Средне-сланцевый синий + Средне-весенний зелёный + Средний бирюзовый + Средне-фиолетово-красный + Полуночный синий + Мимоза + Минеральный синий + Минеральный фиолетовый + Мятный + Мятный крем + Туманный розовый + Мокасиновый + Лунный жёлтый + Мшисто-зелёный + Горчичный + Белый Navajo + Тёмно-синий + Охровый + Старинное кружево + Старинная роза + Оливковый + Тускло-оливковый + Оперный малиновый + Оранжевый + Оранжево-красный + Орхидеевый + Бледно-лиловый + Бледно-синий + Бледный джинсовый + Бледный золотарник + Бледно-зелёный + Бледный охристый + Бледный бирюзовый + Бледный фиолетово-красный + Анютины глазки + Взбитая папайя + Патриарх + Персиковый + Персиковая жемчужина + Персиковый пух + Голубой павлина + Зелёный павлина + Жемчужно-розовый + Хурмовый + Перу + Розовый + Сливовый + Пудровый синий + Прусский синий + Фиолетовый + Красный + Розовый + Светло-розовый + Розово-коричневый + Голубой королевский + Рубиновый + Цвет седловой кожи + Лососевый + Лососево-розовый + Синий шалфей + Песочно-бежевый + Песочно-коричневый + Сапфировый + Саксово-синий + Эскарлат + Цвет ракушки + Морской зелёный + Сепия + Розовый ракушечный + Тиенна + Серебряный + Небесно-голубой + Сланцево-синий + Сланцево-серый + Снежный + Спинельный красный + Весенне-зелёный + Стальной синий + Насыщенный синий + Насыщенный красный + Солнечный оранжевый + Загорелый + Мандариновый + Мандариново-жёлтый + Бирюзовый + Чертополоховый + Томатный + Тропический оранжевый + Бирюзовый + Синий бирюзовый + Зелёный бирюзовый + Ультрамариновый + Киноварный + Очень светлый малахитовый зелёный + Фиолетовый + Виридиановый + Уэджвудский синий + Пшеничный + Белый + Белый дым + Глициния + Жёлтый + Желто-зелёный + + \ No newline at end of file diff --git a/app/src/main/res/values-zh-rHK/android_colors_string.xml b/app/src/main/res/values-zh-rHK/android_colors_string.xml new file mode 100644 index 00000000..7bd29100 --- /dev/null +++ b/app/src/main/res/values-zh-rHK/android_colors_string.xml @@ -0,0 +1,22 @@ + + + + + + + 暗灰 + + + 亮灰 + 品紅 / 洋紅 + + 海軍藍 / 藏青 + 橄欖 + + + + 鴨綠 / 鳧綠 + + + + \ No newline at end of file diff --git a/app/src/main/res/values-zh-rHK/css_colors_string.xml b/app/src/main/res/values-zh-rHK/css_colors_string.xml new file mode 100644 index 00000000..80be17d9 --- /dev/null +++ b/app/src/main/res/values-zh-rHK/css_colors_string.xml @@ -0,0 +1,144 @@ + + + + 愛麗絲藍 + 古董白 + 藍綠 / 碧藍 + 湛藍 + 米黃 + 陶坯黃 + + 杏仁白 + + 藍紫 + + 硬木 + 軍服藍 + 查特酒綠 + 巧克力 + 珊瑚紅 + 矢車菊藍 + 玉米絲 + 緋紅 + + 暗藍 + 暗青 + 暗金菊 + 暗灰 + 暗綠 + 暗卡其 + 暗洋紅 + 暗橄欖綠 + 暗橙 + 暗蘭紫 + 暗紅 + 暗鮭紅 + 暗海綠 + 暗巖藍 + 暗巖灰 + 暗綠松石 + 暗紫 + 深粉紅 + 深天藍 + 昏灰 + 道奇藍 + 磚紅 + 花卉白 + 森林綠 + 庚斯博羅灰 + 幽靈白 + + 金菊 + + + 綠黃 + 蜜瓜綠 + 暖粉紅 + 印度紅 + + 象牙 + 卡其 + 薰衣草 + 薰衣草紫紅 + 草坪綠 + 檸檬綢 + 亮藍 + 亮珊瑚 + 亮青 + 亮金菊黃 + 亮灰 + 亮綠 + 亮粉紅 + 亮鮭紅 + 亮海綠 + 淺天藍 + 亮巖灰 + 亮鋼藍 + 亮黃 + 鮮綠 / 萊姆 + 檸檬綠 + 亞麻 + 洋紅 / 品紅 + + 中碧藍 + 中藍 + 梅紅 + 中蘭紫 + 中紫 + 中海綠 + 中巖藍 + 中春綠 + 中綠松石 + 中青紫紅 + 午夜藍 + 薄荷奶油 + 霧玫瑰 + 鹿皮鞋 + 那瓦霍白 + 海軍藍 / 深藍 + 舊蕾絲 + 橄欖 + 橄欖軍服綠 + + 橙紅 + 蘭花 / 蘭紫 + 灰金菊 + 灰綠 + 灰綠松石 + 灰紫紅 + 蕃木瓜 + 宗主教 + 粉撲桃 + 秘魯 + 粉紅 + 粉藍 + 麗貝卡紫 + + 玫瑰褐 + 品藍 / 皇室藍 + 鞍褐 + 鮭紅 + 沙褐 + 海貝 + 海綠 + 赭黃 + + 天空藍 + 巖藍 + 巖灰 + + 春綠 + 鋼青 + 日曬 + 鴨綠 / 鳧綠 + 薊紫 + 蕃茄紅 + 綠松 + 紫羅蘭 + 小麥 + + 白煙 + + 黃綠 + + \ No newline at end of file diff --git a/app/src/main/res/values-zh-rHK/strings.xml b/app/src/main/res/values-zh-rHK/strings.xml index 2fe4c575..a8f23597 100644 --- a/app/src/main/res/values-zh-rHK/strings.xml +++ b/app/src/main/res/values-zh-rHK/strings.xml @@ -895,10 +895,14 @@ 包名 (計算中...) 版本名稱 (計算中...) 版本號 (計算中...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -910,7 +914,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -939,5 +943,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-zh-rHK/web_colors_string.xml b/app/src/main/res/values-zh-rHK/web_colors_string.xml new file mode 100644 index 00000000..ed37363b --- /dev/null +++ b/app/src/main/res/values-zh-rHK/web_colors_string.xml @@ -0,0 +1,253 @@ + + + + 愛麗絲藍 + 茜紅 / 深茜紅 + 琥珀 + 紫水晶 + 古董白 + 蘋果綠 + 杏黃 + + 藍綠 / 碧藍 + 水藍 + 蔚藍 / 湛藍 + 淺藍 + 淺粉紅 + 米黃 + 陶坯黃 + + 杏仁白 + + 藍紫 + 黃綠 / 明綠 + + + 勃艮第酒紅 + 硬木 + 燃橙 + 軍服藍 + + 山茶紅 + 鮮黃 + 樞機紅 + 胭脂紅 + 青瓷綠 + 櫻桃紅 / 櫻桃 + 蔚藍 / 天青藍 + 香檳黃 + 查特酒綠 + 巧克力 + 鉻黃 + 鐵線蓮紫 + 鈷藍 + 鈷綠 + 椰褐 + 咖啡 + 珊瑚紅 + 淺珊瑚紅 + 矢車菊藍 + 玉米絲 + 奶油 + 緋紅 + + 青藍 + 暗藍 + 暗青 + 暗金菊 + 暗灰 + 暗綠 + 暗卡其 + 暗洋紅 + 暗礦藍 + 暗橄欖綠 + 暗橙 + 暗蘭紫 + 暗粉藍 + 暗紅 + 暗鮭紅 + 暗海綠 + 暗巖藍 + 暗巖灰 + 暗綠松石 + 暗紫 + 深粉紅 + 深天藍 + 昏灰 + 道奇藍 + 碧綠 + 磚紅 + 火鶴紅 + 花卉白 + 葉綠 + 森林綠 + 嫩綠 + 紫紅 + 庚斯博羅灰 + 幽靈白 + + 金菊 + 草綠 + + 淺灰紫 + + 綠黃 + 纈草紫 + 蜜瓜綠 + 蜜橙 + + 暖粉紅 + 印度紅 + + 國際奇連藍 + 鐵灰 + 象牙 + 常春藤綠 + 茉莉黃 + 卡其 + 天青石藍 + 薰衣草紫 + 薰衣草藍 / 長春花 + 薰衣草紫紅 + 亮紫 + 薰衣草霧 + 草坪綠 + 檸檬綢 + 亮藍 + 亮珊瑚 + 亮青 + 亮金菊黃 + 亮灰 + 亮綠 + 亮卡其 + 亮粉紅 + 亮鮭紅 + 亮海綠 + 淺天藍 + 亮巖灰 + 亮鋼藍 + 亮紫 + 亮黃 + 紫丁香 + 檸檬綠 / 亮檸檬綠 + 檸檬綠 + 亞麻 + 洋紅 / 品紅 + 洋玫瑰紅 + 孔雀石綠 + 錦葵紫 + 萬壽菊黃 + 水手藍 + + 木槿紫 + 中碧藍 + 中藍 + 梅紅 + 中蘭紫 + 中紫 + 中海綠 + 中巖藍 + 中春綠 + 中綠松石 + 中青紫紅 + 午夜藍 + 含羞草黃 + 礦藍 + 礦紫 + 薄荷綠 + 薄荷奶油 + 霧玫瑰 + 鹿皮鞋 + 月黃 + 苔蘚綠 + 芥末黃 + 那瓦霍白 + 海軍藍 / 藏青 + + 舊蕾絲 + 陳玫紅 + 橄欖 + 橄欖軍服綠 + 優品紫紅 + + 橙紅 + 蘭花 / 蘭紫 + 淡紫丁香 + 灰藍 + 灰丁寧藍 / 白牛仔布 + 灰金菊 + 灰綠 + 灰土 + 灰綠松石 + 灰紫紅 + 三色堇紫 + 蕃木瓜 + 宗主教 + + 珍珠桃 + 粉撲桃 + 孔雀藍 + 孔雀綠 + 淺珍珠紅 + 柿子橙 + 秘魯 + 粉紅 + 梅紅 + 粉藍 + 普魯士藍 + + + 玫瑰紅 + 淺玫瑰紅 + 玫瑰褐 + 品藍 / 皇室藍 + 紅寶石 + 鞍褐 + 鮭紅 + 淺鮭紅 + 鼠尾草藍 + 沙棕 + 沙褐 + 藍寶石 / 青玉 + 薩克斯藍 + 猩紅 / 腥紅 + 海貝 + 海綠 + 深褐 / 烏賊墨 + 殼黃紅 + 赭黃 + + 天空藍 + 巖藍 + 巖灰 + + 尖晶石紅 + 春綠 + 鋼青 + 濃藍 + 鮮紅 + 陽橙 + 日曬 + + 橙黃 + 鴨綠 / 鳧綠 + 薊紫 + 蕃茄紅 + 熱帶橙 + 綠松 / 綠松石 + 土耳其藍 + 綠松石綠 + 極濃海藍 + 硃紅 + 孔雀石綠 + 堇紫 + 鉻綠 + 韋奇伍德瓷藍 + 小麥 + + 白煙 + 紫藤 + + 黃綠 + + \ No newline at end of file diff --git a/app/src/main/res/values-zh-rTW/android_colors_string.xml b/app/src/main/res/values-zh-rTW/android_colors_string.xml new file mode 100644 index 00000000..7bd29100 --- /dev/null +++ b/app/src/main/res/values-zh-rTW/android_colors_string.xml @@ -0,0 +1,22 @@ + + + + + + + 暗灰 + + + 亮灰 + 品紅 / 洋紅 + + 海軍藍 / 藏青 + 橄欖 + + + + 鴨綠 / 鳧綠 + + + + \ No newline at end of file diff --git a/app/src/main/res/values-zh-rTW/css_colors_string.xml b/app/src/main/res/values-zh-rTW/css_colors_string.xml new file mode 100644 index 00000000..80be17d9 --- /dev/null +++ b/app/src/main/res/values-zh-rTW/css_colors_string.xml @@ -0,0 +1,144 @@ + + + + 愛麗絲藍 + 古董白 + 藍綠 / 碧藍 + 湛藍 + 米黃 + 陶坯黃 + + 杏仁白 + + 藍紫 + + 硬木 + 軍服藍 + 查特酒綠 + 巧克力 + 珊瑚紅 + 矢車菊藍 + 玉米絲 + 緋紅 + + 暗藍 + 暗青 + 暗金菊 + 暗灰 + 暗綠 + 暗卡其 + 暗洋紅 + 暗橄欖綠 + 暗橙 + 暗蘭紫 + 暗紅 + 暗鮭紅 + 暗海綠 + 暗巖藍 + 暗巖灰 + 暗綠松石 + 暗紫 + 深粉紅 + 深天藍 + 昏灰 + 道奇藍 + 磚紅 + 花卉白 + 森林綠 + 庚斯博羅灰 + 幽靈白 + + 金菊 + + + 綠黃 + 蜜瓜綠 + 暖粉紅 + 印度紅 + + 象牙 + 卡其 + 薰衣草 + 薰衣草紫紅 + 草坪綠 + 檸檬綢 + 亮藍 + 亮珊瑚 + 亮青 + 亮金菊黃 + 亮灰 + 亮綠 + 亮粉紅 + 亮鮭紅 + 亮海綠 + 淺天藍 + 亮巖灰 + 亮鋼藍 + 亮黃 + 鮮綠 / 萊姆 + 檸檬綠 + 亞麻 + 洋紅 / 品紅 + + 中碧藍 + 中藍 + 梅紅 + 中蘭紫 + 中紫 + 中海綠 + 中巖藍 + 中春綠 + 中綠松石 + 中青紫紅 + 午夜藍 + 薄荷奶油 + 霧玫瑰 + 鹿皮鞋 + 那瓦霍白 + 海軍藍 / 深藍 + 舊蕾絲 + 橄欖 + 橄欖軍服綠 + + 橙紅 + 蘭花 / 蘭紫 + 灰金菊 + 灰綠 + 灰綠松石 + 灰紫紅 + 蕃木瓜 + 宗主教 + 粉撲桃 + 秘魯 + 粉紅 + 粉藍 + 麗貝卡紫 + + 玫瑰褐 + 品藍 / 皇室藍 + 鞍褐 + 鮭紅 + 沙褐 + 海貝 + 海綠 + 赭黃 + + 天空藍 + 巖藍 + 巖灰 + + 春綠 + 鋼青 + 日曬 + 鴨綠 / 鳧綠 + 薊紫 + 蕃茄紅 + 綠松 + 紫羅蘭 + 小麥 + + 白煙 + + 黃綠 + + \ No newline at end of file diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index b12556e8..04ef9255 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -895,10 +895,14 @@ 包名 (計算中...) 版本名稱 (計算中...) 版本號 (計算中...) + File size + Signature + File info File extensions Hide all file extensions Show all file extensions Show file extensions (exclude *.js / *.auto) + Used to set whether to show file extensions in AutoJs6 file explorer. Switch to new layout Switch to legacy layout Search color @@ -910,7 +914,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -939,5 +943,7 @@ Failed to determine the index of the theme color item Color details Theme color details + Search help + Failed to render content diff --git a/app/src/main/res/values-zh-rTW/web_colors_string.xml b/app/src/main/res/values-zh-rTW/web_colors_string.xml new file mode 100644 index 00000000..ed37363b --- /dev/null +++ b/app/src/main/res/values-zh-rTW/web_colors_string.xml @@ -0,0 +1,253 @@ + + + + 愛麗絲藍 + 茜紅 / 深茜紅 + 琥珀 + 紫水晶 + 古董白 + 蘋果綠 + 杏黃 + + 藍綠 / 碧藍 + 水藍 + 蔚藍 / 湛藍 + 淺藍 + 淺粉紅 + 米黃 + 陶坯黃 + + 杏仁白 + + 藍紫 + 黃綠 / 明綠 + + + 勃艮第酒紅 + 硬木 + 燃橙 + 軍服藍 + + 山茶紅 + 鮮黃 + 樞機紅 + 胭脂紅 + 青瓷綠 + 櫻桃紅 / 櫻桃 + 蔚藍 / 天青藍 + 香檳黃 + 查特酒綠 + 巧克力 + 鉻黃 + 鐵線蓮紫 + 鈷藍 + 鈷綠 + 椰褐 + 咖啡 + 珊瑚紅 + 淺珊瑚紅 + 矢車菊藍 + 玉米絲 + 奶油 + 緋紅 + + 青藍 + 暗藍 + 暗青 + 暗金菊 + 暗灰 + 暗綠 + 暗卡其 + 暗洋紅 + 暗礦藍 + 暗橄欖綠 + 暗橙 + 暗蘭紫 + 暗粉藍 + 暗紅 + 暗鮭紅 + 暗海綠 + 暗巖藍 + 暗巖灰 + 暗綠松石 + 暗紫 + 深粉紅 + 深天藍 + 昏灰 + 道奇藍 + 碧綠 + 磚紅 + 火鶴紅 + 花卉白 + 葉綠 + 森林綠 + 嫩綠 + 紫紅 + 庚斯博羅灰 + 幽靈白 + + 金菊 + 草綠 + + 淺灰紫 + + 綠黃 + 纈草紫 + 蜜瓜綠 + 蜜橙 + + 暖粉紅 + 印度紅 + + 國際奇連藍 + 鐵灰 + 象牙 + 常春藤綠 + 茉莉黃 + 卡其 + 天青石藍 + 薰衣草紫 + 薰衣草藍 / 長春花 + 薰衣草紫紅 + 亮紫 + 薰衣草霧 + 草坪綠 + 檸檬綢 + 亮藍 + 亮珊瑚 + 亮青 + 亮金菊黃 + 亮灰 + 亮綠 + 亮卡其 + 亮粉紅 + 亮鮭紅 + 亮海綠 + 淺天藍 + 亮巖灰 + 亮鋼藍 + 亮紫 + 亮黃 + 紫丁香 + 檸檬綠 / 亮檸檬綠 + 檸檬綠 + 亞麻 + 洋紅 / 品紅 + 洋玫瑰紅 + 孔雀石綠 + 錦葵紫 + 萬壽菊黃 + 水手藍 + + 木槿紫 + 中碧藍 + 中藍 + 梅紅 + 中蘭紫 + 中紫 + 中海綠 + 中巖藍 + 中春綠 + 中綠松石 + 中青紫紅 + 午夜藍 + 含羞草黃 + 礦藍 + 礦紫 + 薄荷綠 + 薄荷奶油 + 霧玫瑰 + 鹿皮鞋 + 月黃 + 苔蘚綠 + 芥末黃 + 那瓦霍白 + 海軍藍 / 藏青 + + 舊蕾絲 + 陳玫紅 + 橄欖 + 橄欖軍服綠 + 優品紫紅 + + 橙紅 + 蘭花 / 蘭紫 + 淡紫丁香 + 灰藍 + 灰丁寧藍 / 白牛仔布 + 灰金菊 + 灰綠 + 灰土 + 灰綠松石 + 灰紫紅 + 三色堇紫 + 蕃木瓜 + 宗主教 + + 珍珠桃 + 粉撲桃 + 孔雀藍 + 孔雀綠 + 淺珍珠紅 + 柿子橙 + 秘魯 + 粉紅 + 梅紅 + 粉藍 + 普魯士藍 + + + 玫瑰紅 + 淺玫瑰紅 + 玫瑰褐 + 品藍 / 皇室藍 + 紅寶石 + 鞍褐 + 鮭紅 + 淺鮭紅 + 鼠尾草藍 + 沙棕 + 沙褐 + 藍寶石 / 青玉 + 薩克斯藍 + 猩紅 / 腥紅 + 海貝 + 海綠 + 深褐 / 烏賊墨 + 殼黃紅 + 赭黃 + + 天空藍 + 巖藍 + 巖灰 + + 尖晶石紅 + 春綠 + 鋼青 + 濃藍 + 鮮紅 + 陽橙 + 日曬 + + 橙黃 + 鴨綠 / 鳧綠 + 薊紫 + 蕃茄紅 + 熱帶橙 + 綠松 / 綠松石 + 土耳其藍 + 綠松石綠 + 極濃海藍 + 硃紅 + 孔雀石綠 + 堇紫 + 鉻綠 + 韋奇伍德瓷藍 + 小麥 + + 白煙 + 紫藤 + + 黃綠 + + \ No newline at end of file diff --git a/app/src/main/res/values-zh/strings.xml b/app/src/main/res/values-zh/strings.xml index 84a31c56..1d88ce0e 100644 --- a/app/src/main/res/values-zh/strings.xml +++ b/app/src/main/res/values-zh/strings.xml @@ -939,5 +939,7 @@ 无法确定主题色条目的索引值 颜色详情 主题色详情 + 搜索帮助 + 内容渲染失败 diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index fef81604..97f0943d 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -169,7 +169,7 @@ Failed to rename Cannot retrieve the battery state Use more characters for the password - Those passwords didn\'t match + Those passwords did not match Failed to check for updates Colon must follow a valid IP address Compass cannot be null @@ -265,7 +265,7 @@ Unknown result type {name: %s, params: %s} Unknown selector {name: %s, type: %s} Unknown type: %s - File doesn\'t exist or readable: %s + File does not exist or readable: %s AutoJs6 foreground service Click to launch AutoJs6 AutoJs6 foreground service @@ -690,7 +690,7 @@ File already exists File explorer File name - File doesn\'t exist + File does not exist File \"%1$s\" is not an executable script Files transfer Find @@ -1149,7 +1149,7 @@ Android color library Material design color library Default color library - Backgournd light + Background light Background night Color library Default colors @@ -1186,5 +1186,7 @@ HSL RGB HEX + Search help + Failed to render content diff --git a/version.properties b/version.properties index 70979dcd..57616826 100644 --- a/version.properties +++ b/version.properties @@ -1,5 +1,5 @@ -#Wed Apr 02 00:47:54 CST 2025 -BUILD_TIME=1743526074171 +#Fri Apr 04 11:53:21 CST 2025 +BUILD_TIME=1743738801004 COMPILE_SDK_VERSION=35 JAVA_VERSION=23 JAVA_VERSION_MIN_RADICAL=0 @@ -17,6 +17,6 @@ RAPID_OCR_OPENCV_MOBILE_LABEL_VERSION=13 RAPID_OCR_OPENCV_MOBILE_VERSION=4.5.3 TARGET_SDK_VERSION=35 TARGET_SDK_VERSION_INRT=29 -VERSION_BUILD=3095 +VERSION_BUILD=3103 VERSION_NAME=6.6.2 Alpha5 VSCODE_EXT_REQUIRED_VERSION=1.0.8