diff options
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/values-land-v28/styles.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/values-v28/styles.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 25 | ||||
-rw-r--r-- | app/src/main/res/values/styles.xml | 10 |
4 files changed, 32 insertions, 7 deletions
diff --git a/app/src/main/res/values-land-v28/styles.xml b/app/src/main/res/values-land-v28/styles.xml index 037bf7e3..c3e82635 100644 --- a/app/src/main/res/values-land-v28/styles.xml +++ b/app/src/main/res/values-land-v28/styles.xml @@ -1,6 +1,6 @@ <resources> - <style name="AppTheme" parent="Theme.MaterialComponents.DayNight"> + <style name="AppTheme" parent="Theme.Material3.DayNight"> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> diff --git a/app/src/main/res/values-v28/styles.xml b/app/src/main/res/values-v28/styles.xml index 80d2dd21..272e1ebf 100644 --- a/app/src/main/res/values-v28/styles.xml +++ b/app/src/main/res/values-v28/styles.xml @@ -1,7 +1,7 @@ <resources> <!-- Base application theme. --> - <style name="AppTheme" parent="Theme.MaterialComponents.DayNight"> + <style name="AppTheme" parent="Theme.Material3.DayNight"> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 6a5890c7..3b8753e8 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1215,4 +1215,29 @@ <string name="app_lock_timeout_12_hours">12 hours</string> <string name="app_lock_timeout_24_hours">24 hours</string> + <!--EditProfileService Notification--> + <string name="submit_change_avatar">Submit Change Avatar</string> + <string name="submit_change_banner">Submit Change Banner</string> + <string name="submit_save_profile">Submit Save Profile</string> + + <!--EditProfileActivity--> + <string name="action_edit_profile">Edit Profile</string> + <string name="remove_avatar">Remove Avatar</string> + <string name="remove_banner">Remove Banner</string> + <string name="display_name_text">Display Name</string> + <string name="display_name_hint">Show on your profile page</string> + <string name="display_name_description">This will be displayed to viewer of your profile page and does not change your username</string> + <string name="about_you_text">About You</string> + <string name="about_you_hint">A little description of your self</string> + <string name="message_remove_avatar_success">Success remove Avatar</string> + <string name="message_remove_avatar_failed_fmt">Failed remove Avatar %s</string> + <string name="message_remove_banner_success">Success remove Banner</string> + <string name="message_remove_banner_failed_fmt">Failed remove Banner %s</string> + <string name="message_change_avatar_success">Success changing Avatar</string> + <string name="message_change_avatar_failed_fmt">Failed changing Avatar %s</string> + <string name="message_change_banner_success">Success changing Banner</string> + <string name="message_change_banner_failed_fmt">Failed changing Banner %s</string> + <string name="message_save_profile_success">Success save profile</string> + <string name="message_save_profile_failed_fmt">Failed save profile %s</string> + </resources> diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 350b0f29..9fdc6369 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -1,7 +1,7 @@ <resources xmlns:tools="http://schemas.android.com/tools"> <!-- Base application theme. --> - <style name="AppTheme" parent="Theme.MaterialComponents.DayNight"> + <style name="AppTheme" parent="Theme.Material3.DayNight"> <item name="colorPrimary">?attr/colorPrimary</item> <item name="colorPrimaryDark">?attr/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> @@ -58,7 +58,7 @@ <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.DayNight" /> - <style name="MaterialAlertDialogTheme" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog"> + <style name="MaterialAlertDialogTheme" parent="ThemeOverlay.Material3.MaterialAlertDialog"> <item name="android:textSize">?attr/font_default</item> <item name="android:background">?attr/cardViewBackgroundColor</item> <item name="materialAlertDialogTitleTextStyle">@style/MaterialAlertDialogTitleTextStyle @@ -78,15 +78,15 @@ </item> </style> - <style name="MaterialAlertDialogPositiveButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog"> + <style name="MaterialAlertDialogPositiveButtonStyle" parent="Widget.Material3.Button.TextButton.Dialog"> <item name="android:textColor">@color/colorAccent</item> </style> - <style name="MaterialAlertDialogNegativeButtonStyle" parent="Widget.MaterialComponents.Button.TextButton.Dialog"> + <style name="MaterialAlertDialogNegativeButtonStyle" parent="Widget.Material3.Button.TextButton.Dialog"> <item name="android:textColor">?attr/primaryTextColor</item> </style> - <style name="MaterialAlertDialogTitleTextStyle" parent="MaterialAlertDialog.MaterialComponents.Title.Text"> + <style name="MaterialAlertDialogTitleTextStyle" parent="MaterialAlertDialog.Material3.Title.Text"> <item name="android:textSize">?attr/font_20</item> </style> |