Skip to content

Commit

Permalink
Analysis: Suppress unused resources for strings on stories
Browse files Browse the repository at this point in the history
  • Loading branch information
ParaskP7 committed Feb 28, 2022
1 parent 38bb1b5 commit d397e19
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions stories/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="capture_button_alt">Capture</string>
<string name="flip_button_alt">Flip camera</string>
<string name="flash_button_alt">Flash</string>
Expand Down Expand Up @@ -97,21 +97,21 @@

<!-- PhotoEditor strings - overrides for user-facing strings so these can be translated at the app level and applied
by resource merging -->
<string name="camera_error">This device doesn\'t support Camera2 API.</string>
<string name="toast_error_playing_video">An error occurred while playing your video</string>
<string name="camera_error" tools:ignore="UnusedResources">This device doesn\'t support Camera2 API.</string>
<string name="toast_error_playing_video" tools:ignore="UnusedResources">An error occurred while playing your video</string>

<string name="color_picker_label_text">Text</string>
<string name="color_picker_label_background">Background</string>

<!-- WordPress Android strings - matching in case of future integration -->
<!-- Android O notification channels, these show in the Android app settings -->
<string name="notification_channel_general_title">General</string>
<string name="notification_channel_important_title">Important</string>
<string name="notification_channel_transient_title">Transient</string>
<string name="notification_channel_reminder_title">Reminder</string>
<string name="notification_channel_general_title" tools:ignore="UnusedResources">General</string>
<string name="notification_channel_important_title" tools:ignore="UnusedResources">Important</string>
<string name="notification_channel_transient_title" tools:ignore="UnusedResources">Transient</string>
<string name="notification_channel_reminder_title" tools:ignore="UnusedResources">Reminder</string>

<string name="notification_channel_normal_id" translatable="false">wpandroid_notification_normal_channel_id</string>
<string name="notification_channel_important_id" translatable="false">wpandroid_notification_important_channel_id</string>
<string name="notification_channel_important_id" translatable="false" tools:ignore="UnusedResources">wpandroid_notification_important_channel_id</string>
<string name="notification_channel_transient_id" translatable="false">wpandroid_notification_transient_channel_id</string>
<string name="notification_channel_reminder_id" translatable="false">wpandroid_notification_reminder_channel_id</string>
<string name="notification_channel_reminder_id" translatable="false" tools:ignore="UnusedResources">wpandroid_notification_reminder_channel_id</string>
</resources>

0 comments on commit d397e19

Please sign in to comment.