6.6.2 - Alpha5 - 主题色设置页面新布局支持显示颜色详情
This commit is contained in:
369
app/src/main/res/layout/color_info_dialog_list_item.xml
Normal file
369
app/src/main/res/layout/color_info_dialog_list_item.xml
Normal file
@@ -0,0 +1,369 @@
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:focusable="true"
|
||||
android:clickable="true"
|
||||
android:gravity="center_vertical|start"
|
||||
android:minHeight="@dimen/ref_md_listitem_height"
|
||||
android:paddingBottom="@dimen/ref_md_listitem_vertical_margin"
|
||||
android:paddingTop="@dimen/ref_md_listitem_vertical_margin">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/color_hex_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="@dimen/ref_md_dialog_frame_margin"
|
||||
android:layout_marginStart="@dimen/ref_md_listitem_margin_left"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/color_rgb_parent"
|
||||
app:layout_constraintEnd_toEndOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:id="@+id/color_hex_guideline"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintGuide_begin="100dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hex_label"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:text="@string/literal_hex_uppercase"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_hex_guideline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hex_colon"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="4dp"
|
||||
android:gravity="center"
|
||||
android:layout_marginHorizontal="4sp"
|
||||
android:text="@string/symbol_colon"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_hex_label"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_hex_value" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hex_value"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:text="@string/ellipsis_six"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:paddingBottom="0dp"
|
||||
android:paddingTop="0dp"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_hex_colon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/color_rgb_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="@dimen/ref_md_dialog_frame_margin"
|
||||
android:layout_marginStart="@dimen/ref_md_listitem_margin_left"
|
||||
android:layout_marginTop="4sp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/color_hex_parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/color_hsl_parent"
|
||||
app:layout_constraintEnd_toEndOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:id="@+id/color_rgb_guideline"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintGuide_begin="100dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_rgb_label"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:text="@string/literal_rgb_uppercase"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_rgb_guideline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_rgb_colon"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="4dp"
|
||||
android:gravity="center"
|
||||
android:layout_marginHorizontal="4sp"
|
||||
android:text="@string/symbol_colon"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_rgb_label"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_rgb_value" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_rgb_value"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:text="@string/ellipsis_six"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:paddingBottom="0dp"
|
||||
android:paddingTop="0dp"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_rgb_colon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/color_hsl_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="@dimen/ref_md_dialog_frame_margin"
|
||||
android:layout_marginStart="@dimen/ref_md_listitem_margin_left"
|
||||
android:layout_marginTop="4sp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/color_rgb_parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/color_hsv_parent"
|
||||
app:layout_constraintEnd_toEndOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:id="@+id/color_hsl_guideline"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintGuide_begin="100dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hsl_label"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:text="@string/literal_hsl_uppercase"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_hsl_guideline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hsl_colon"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="4dp"
|
||||
android:gravity="center"
|
||||
android:layout_marginHorizontal="4sp"
|
||||
android:text="@string/symbol_colon"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_hsl_label"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_hsl_value" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hsl_value"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:text="@string/ellipsis_six"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:paddingBottom="0dp"
|
||||
android:paddingTop="0dp"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_hsl_colon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/color_hsv_parent"
|
||||
android:visibility="visible"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="@dimen/ref_md_dialog_frame_margin"
|
||||
android:layout_marginStart="@dimen/ref_md_listitem_margin_left"
|
||||
android:layout_marginTop="4sp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/color_hsl_parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/color_int_parent"
|
||||
app:layout_constraintEnd_toEndOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:id="@+id/color_hsv_guideline"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintGuide_begin="100dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hsv_label"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:text="@string/literal_hsv_uppercase"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_hsv_guideline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hsv_colon"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="4dp"
|
||||
android:gravity="center"
|
||||
android:layout_marginHorizontal="4sp"
|
||||
android:text="@string/symbol_colon"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_hsv_label"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_hsv_value" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_hsv_value"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:text="@string/ellipsis_six"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:paddingBottom="0dp"
|
||||
android:paddingTop="0dp"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_hsv_colon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/color_int_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="@dimen/ref_md_dialog_frame_margin"
|
||||
android:layout_marginStart="@dimen/ref_md_listitem_margin_left"
|
||||
android:layout_marginTop="4sp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/color_hsv_parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.Guideline
|
||||
android:id="@+id/color_int_guideline"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintGuide_begin="100dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_int_label"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:text="@string/literal_color_int"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_int_guideline" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_int_colon"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:minWidth="4dp"
|
||||
android:gravity="center"
|
||||
android:layout_marginHorizontal="4sp"
|
||||
android:text="@string/symbol_colon"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_int_label"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@id/color_int_value" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/color_int_value"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
android:text="@string/ellipsis_six"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical|start"
|
||||
android:textAlignment="viewStart"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:paddingBottom="0dp"
|
||||
android:paddingTop="0dp"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:textSize="@dimen/ref_md_listitem_textsize"
|
||||
app:layout_constraintStart_toEndOf="@id/color_int_colon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -859,7 +859,8 @@
|
||||
<string name="text_unavailable">غير متوفره</string>
|
||||
<string name="text_unavailable_abi_for">واجهة برمجة التطبيقات \"%s\" غير متوفرة</string>
|
||||
<string name="text_under_development_content">ستكون الميزة جاهزة للاستخدام في التحديثات القليلة التالية</string>
|
||||
<string name="text_under_development_title">تحت التطوير</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">تحت التطوير</string>
|
||||
<string name="text_undo">الغاء التحميل</string>
|
||||
<string name="text_undo_simplified">ينسحب</string>
|
||||
<string name="text_unknown">غير معروف</string>
|
||||
@@ -938,5 +939,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -855,7 +855,8 @@
|
||||
<string name="text_unavailable">Unavailable</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" is unavailable</string>
|
||||
<string name="text_under_development_content">The feature will be ready to use in the next few updates</string>
|
||||
<string name="text_under_development_title">Under development</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">Under development</string>
|
||||
<string name="text_undo">Undo</string>
|
||||
<string name="text_undo_simplified">Undo</string>
|
||||
<string name="text_unknown">Unknown</string>
|
||||
@@ -934,5 +935,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -858,7 +858,8 @@
|
||||
<string name="text_unavailable">No disponible</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" no está disponible</string>
|
||||
<string name="text_under_development_content">La función estará lista para su uso en las próximas actualizaciones</string>
|
||||
<string name="text_under_development_title">En desarrollo</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">En desarrollo</string>
|
||||
<string name="text_undo">Revocar</string>
|
||||
<string name="text_undo_simplified">Revoc</string>
|
||||
<string name="text_unknown">Desconocido</string>
|
||||
@@ -937,5 +938,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -858,7 +858,8 @@
|
||||
<string name="text_unavailable">Indisponible</string>
|
||||
<string name="text_unavailable_abi_for">L\'ABI \"%s\" n\'est pas disponible</string>
|
||||
<string name="text_under_development_content">La fonctionnalité sera prête à être utilisée dans les prochaines mises à jour</string>.
|
||||
<string name="text_under_development_title">En cours de développement</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">En cours de développement</string>
|
||||
<string name="text_undo">Révoquer</string>
|
||||
<string name="text_undo_simplified">Révoq</string>
|
||||
<string name="text_unknown">Inconnu</string>
|
||||
@@ -937,5 +938,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -858,7 +858,8 @@
|
||||
<string name="text_unavailable">使用できません</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" は使用できません</string>
|
||||
<string name="text_under_development_content">この機能は, 次の数回のアップデートで使用できるようになる予定です</string>
|
||||
<string name="text_under_development_title">開発中</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">開発中</string>
|
||||
<string name="text_undo">元に戻す</string>
|
||||
<string name="text_undo_simplified">戻る</string>
|
||||
<string name="text_unknown">不明</string>
|
||||
@@ -937,5 +938,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -859,7 +859,8 @@
|
||||
<string name="text_unavailable">사용할 수 없음</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" 를 사용할 수 없습니다</string>
|
||||
<string name="text_under_development_content">기능은 다음 몇 가지 업데이트에서 사용할 준비가됩니다.</string>
|
||||
<string name="text_under_development_title">개발중인</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">개발중인</string>
|
||||
<string name="text_undo">실행 취소</string>
|
||||
<string name="text_undo_simplified">뒤</string>
|
||||
<string name="text_unknown">알 수 없음</string>
|
||||
@@ -938,5 +939,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -858,7 +858,8 @@
|
||||
<string name="text_unavailable">Недоступно</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" недоступен</string>
|
||||
<string name="text_under_development_content">Функция будет готова к использованию в ближайших обновлениях</string>
|
||||
<string name="text_under_development_title">В стадии разработки</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">В стадии разработки</string>
|
||||
<string name="text_undo">Отозвать</string>
|
||||
<string name="text_undo_simplified">Верни</string>
|
||||
<string name="text_unknown">Неизвестно</string>
|
||||
@@ -937,5 +938,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -857,7 +857,8 @@
|
||||
<string name="text_unavailable">不可用</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" 不可用</string>
|
||||
<string name="text_under_development_content">將在後續版本實現當前功能</string>
|
||||
<string name="text_under_development_title">開發中</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">開發中</string>
|
||||
<string name="text_undo">撤銷</string>
|
||||
<string name="text_undo_simplified">撤銷</string>
|
||||
<string name="text_unknown">未知</string>
|
||||
@@ -936,5 +937,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -857,7 +857,8 @@
|
||||
<string name="text_unavailable">不可用</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" 不可用</string>
|
||||
<string name="text_under_development_content">將在後續版本實現當前功能</string>
|
||||
<string name="text_under_development_title">開發中</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">開發中</string>
|
||||
<string name="text_undo">撤銷</string>
|
||||
<string name="text_undo_simplified">撤銷</string>
|
||||
<string name="text_unknown">未知</string>
|
||||
@@ -936,5 +937,7 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -854,7 +854,8 @@
|
||||
<string name="text_unavailable">不可用</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" 不可用</string>
|
||||
<string name="text_under_development_content">将在后续版本实现当前功能</string>
|
||||
<string name="text_under_development_title">开发中</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">开发中</string>
|
||||
<string name="text_undo">撤销</string>
|
||||
<string name="text_undo_simplified">撤销</string>
|
||||
<string name="text_unknown">未知</string>
|
||||
@@ -936,5 +937,7 @@
|
||||
<string name="text_failed_to_locate">定位失败</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">无法定位主题色所在颜色库</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">无法确定主题色条目的索引值</string>
|
||||
<string name="dialog_title_color_details">颜色详情</string>
|
||||
<string name="dialog_title_theme_color_details">主题色详情</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -1080,7 +1080,8 @@
|
||||
<string name="text_unavailable">Unavailable</string>
|
||||
<string name="text_unavailable_abi_for">ABI \"%s\" is unavailable</string>
|
||||
<string name="text_under_development_content">The feature will be ready to use in the next few updates</string>
|
||||
<string name="text_under_development_title">Under development</string>
|
||||
<string name="text_under_development_title">@string/text_under_development</string>
|
||||
<string name="text_under_development">Under development</string>
|
||||
<string name="text_undo">Undo</string>
|
||||
<string name="text_undo_simplified">Undo</string>
|
||||
<string name="text_unknown">Unknown</string>
|
||||
@@ -1178,5 +1179,12 @@
|
||||
<string name="text_failed_to_locate">Failed to locate</string>
|
||||
<string name="content_failed_to_locate_library_for_theme_color">Failed to locate the color library for the theme color</string>
|
||||
<string name="content_failed_to_determine_index_of_theme_color_item">Failed to determine the index of the theme color item</string>
|
||||
<string name="dialog_title_color_details">Color details</string>
|
||||
<string name="dialog_title_theme_color_details">Theme color details</string>
|
||||
<string name="literal_color_int" translatable="false">ColorInt</string>
|
||||
<string name="literal_hsv_uppercase" translatable="false">HSV</string>
|
||||
<string name="literal_hsl_uppercase" translatable="false">HSL</string>
|
||||
<string name="literal_rgb_uppercase" translatable="false">RGB</string>
|
||||
<string name="literal_hex_uppercase" translatable="false">HEX</string>
|
||||
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user