Reporting
This commit is contained in:
@@ -16,6 +16,9 @@
|
||||
<attr name="colorTabInactive" format="color"/>
|
||||
<attr name="colorAccentLightest" format="color"/>
|
||||
|
||||
<attr name="primaryLargeButtonStyle" format="reference"/>
|
||||
<attr name="secondaryLargeButtonStyle" format="reference"/>
|
||||
|
||||
<declare-styleable name="MaxWidthFrameLayout">
|
||||
<attr name="android:maxWidth" format="dimension"/>
|
||||
</declare-styleable>
|
||||
|
||||
@@ -145,4 +145,31 @@
|
||||
<item quantity="one">Discussed %d time</item>
|
||||
<item quantity="other">Discussed %d times</item>
|
||||
</plurals>
|
||||
<string name="report_title">Report %s</string>
|
||||
<string name="report_choose_reason">Tell us what\'s going on with this post.</string>
|
||||
<string name="report_choose_reason_subtitle">Choose the best match</string>
|
||||
<string name="report_reason_personal">I don\'t like it</string>
|
||||
<string name="report_reason_personal_subtitle">It is not something you want to see</string>
|
||||
<string name="report_reason_spam">It\'s spam</string>
|
||||
<string name="report_reason_spam_subtitle">Malicious links, fake engagement, or repetitive replies</string>
|
||||
<string name="report_reason_violation">It violates server rules</string>
|
||||
<string name="report_reason_violation_subtitle">You are aware that it breaks specific rules</string>
|
||||
<string name="report_reason_other">It\'s something else</string>
|
||||
<string name="report_reason_other_subtitle">The issue does not fit into other categories</string>
|
||||
<string name="report_choose_rule">Which rules are being violated?</string>
|
||||
<string name="report_choose_rule_subtitle">Select all that apply</string>
|
||||
<string name="report_choose_posts">Are there any posts that back up this report?</string>
|
||||
<string name="report_choose_posts_subtitle">Optional. Select all that apply</string>
|
||||
<string name="report_comment_title">Is there anything else you think we should know?</string>
|
||||
<string name="report_comment_subtitle">Optional.</string>
|
||||
<string name="report_comment_hint">Additional comments</string>
|
||||
<string name="sending_report">Sending report…</string>
|
||||
<string name="report_sent_title">Thanks for reporting, we\'ll look into this.</string>
|
||||
<string name="report_sent_subtitle">While we review this, you can take action against %s.</string>
|
||||
<string name="unfollow_user">Unfollow %s</string>
|
||||
<string name="unfollow">Unfollow</string>
|
||||
<string name="mute_user_explain">You won\'t see their posts or reblogs in your home feed. They won\'t know they\'ve been muted.</string>
|
||||
<string name="block_user_explain">They will no longer be able to follow or see your posts, but thye can see if they\'ve been blocked.</string>
|
||||
<string name="report_personal_title">Don\'t want to see this?</string>
|
||||
<string name="report_personal_subtitle">When you see something you don\'t like on Mastodon, you can remove the person from your experience.</string>
|
||||
</resources>
|
||||
@@ -7,9 +7,12 @@
|
||||
<item name="appkitBackDrawable">@drawable/ic_fluent_arrow_left_24_regular</item>
|
||||
<item name="android:splitMotionEvents">false</item>
|
||||
<item name="android:windowBackground">?colorWindowBackground</item>
|
||||
<item name="android:editTextStyle">@style/Widget.Mastodon.EditText</item>
|
||||
|
||||
<item name="android:buttonStyle">@style/Widget.Mastodon.Button.Primary_DarkOnLight</item>
|
||||
<item name="secondaryButtonStyle">@style/Widget.Mastodon.Button.Secondary_DarkOnLight</item>
|
||||
<item name="primaryLargeButtonStyle">@style/Widget.Mastodon.Button.Large.Primary_DarkOnLight</item>
|
||||
<item name="secondaryLargeButtonStyle">@style/Widget.Mastodon.Button.Large.Secondary_DarkOnLight</item>
|
||||
<item name="android:colorAccent">@color/primary_700</item>
|
||||
<item name="android:colorPrimary">@color/gray_800</item>
|
||||
<item name="android:colorBackground">@color/gray_100</item>
|
||||
@@ -34,6 +37,7 @@
|
||||
<item name="colorAccentLightest">@color/primary_100</item>
|
||||
|
||||
<item name="buttonBackground">@drawable/bg_button_primary_dark_on_light</item>
|
||||
<item name="android:editTextBackground">@drawable/bg_edittext_light</item>
|
||||
|
||||
<item name="android:windowLightStatusBar">true</item>
|
||||
<item name="android:windowLightNavigationBar" tools:ignore="NewApi">true</item>
|
||||
@@ -46,9 +50,12 @@
|
||||
<item name="appkitBackDrawable">@drawable/ic_fluent_arrow_left_24_regular</item>
|
||||
<item name="android:splitMotionEvents">false</item>
|
||||
<item name="android:windowBackground">?colorWindowBackground</item>
|
||||
<item name="android:editTextStyle">@style/Widget.Mastodon.EditText</item>
|
||||
|
||||
<item name="android:buttonStyle">@style/Widget.Mastodon.Button.Primary_LightOnDark</item>
|
||||
<item name="secondaryButtonStyle">@style/Widget.Mastodon.Button.Secondary_LightOnDark</item>
|
||||
<item name="primaryLargeButtonStyle">@style/Widget.Mastodon.Button.Large.Primary_LightOnDark</item>
|
||||
<item name="secondaryLargeButtonStyle">@style/Widget.Mastodon.Button.Large.Secondary_LightOnDark</item>
|
||||
<item name="android:colorAccent">@color/primary_600</item>
|
||||
<item name="android:colorPrimary">@color/gray_50</item>
|
||||
<item name="android:colorBackground">@color/gray_700</item>
|
||||
@@ -75,6 +82,7 @@
|
||||
<item name="colorAccentLightest">@color/primary_100</item>
|
||||
|
||||
<item name="buttonBackground">@drawable/bg_button_primary_light_on_dark</item>
|
||||
<item name="android:editTextBackground">@drawable/bg_edittext_light</item>
|
||||
|
||||
<item name="android:windowLightStatusBar">false</item>
|
||||
<item name="android:windowLightNavigationBar" tools:ignore="NewApi">false</item>
|
||||
@@ -114,6 +122,13 @@
|
||||
<item name="android:paddingRight">16dp</item>
|
||||
</style>
|
||||
|
||||
<style name="Widget.Mastodon.Button.Large">
|
||||
<item name="android:minHeight">56dp</item>
|
||||
<item name="android:paddingLeft">32dp</item>
|
||||
<item name="android:paddingRight">32dp</item>
|
||||
<item name="android:textAppearance">@style/m3_title_medium</item>
|
||||
</style>
|
||||
|
||||
<style name="Widget.Mastodon.Button.Primary_DarkOnLight">
|
||||
<item name="android:background">@drawable/bg_button_primary_dark_on_light</item>
|
||||
<item name="android:textColor">@color/button_text_primary_dark_on_light</item>
|
||||
@@ -134,6 +149,32 @@
|
||||
<item name="android:textColor">@color/button_text_secondary_light_on_dark</item>
|
||||
</style>
|
||||
|
||||
<style name="Widget.Mastodon.Button.Large.Primary_DarkOnLight">
|
||||
<item name="android:background">@drawable/bg_button_primary_dark_on_light</item>
|
||||
<item name="android:textColor">@color/button_text_primary_dark_on_light</item>
|
||||
</style>
|
||||
|
||||
<style name="Widget.Mastodon.Button.Large.Secondary_DarkOnLight">
|
||||
<item name="android:background">@drawable/bg_button_secondary_dark_on_light</item>
|
||||
<item name="android:textColor">@color/button_text_secondary_dark_on_light</item>
|
||||
</style>
|
||||
|
||||
<style name="Widget.Mastodon.Button.Large.Primary_LightOnDark">
|
||||
<item name="android:background">@drawable/bg_button_primary_light_on_dark</item>
|
||||
<item name="android:textColor">@color/button_text_primary_light_on_dark</item>
|
||||
</style>
|
||||
|
||||
<style name="Widget.Mastodon.Button.Large.Secondary_LightOnDark">
|
||||
<item name="android:background">@drawable/bg_button_secondary_light_on_dark</item>
|
||||
<item name="android:textColor">@color/button_text_secondary_light_on_dark</item>
|
||||
</style>
|
||||
|
||||
<style name="Widget.Mastodon.EditText" parent="android:Widget.Material.Light.EditText">
|
||||
<item name="android:textColorHint">?android:textColorSecondary</item>
|
||||
<item name="android:elevation">2dp</item>
|
||||
<item name="android:textAppearance">@style/m3_body_large</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.Mastodon.Dialog.Alert" parent="android:Theme.Material.Light.Dialog.Alert">
|
||||
<item name="android:windowTitleStyle">@style/alert_title</item>
|
||||
<item name="android:dialogPreferredPadding">24dp</item>
|
||||
@@ -188,6 +229,7 @@
|
||||
<style name="m3_body_medium">
|
||||
<item name="android:textSize">14dp</item>
|
||||
<item name="android:textColor">?android:textColorPrimary</item>
|
||||
<item name="android:lineSpacingExtra">4dp</item>
|
||||
</style>
|
||||
|
||||
<style name="m3_title_medium">
|
||||
@@ -226,4 +268,10 @@
|
||||
<item name="android:textSize">24dp</item>
|
||||
<item name="android:textColor">?android:textColorPrimary</item>
|
||||
</style>
|
||||
|
||||
<style name="m3_headline_medium">
|
||||
<item name="android:textSize">28dp</item>
|
||||
<item name="android:textColor">?android:textColorPrimary</item>
|
||||
<item name="android:lineSpacingExtra">3dp</item>
|
||||
</style>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user