Skip to content

Commit

Permalink
Extract string resource
Browse files Browse the repository at this point in the history
  • Loading branch information
marazmarci committed Jul 23, 2023
1 parent 2b4414c commit db7f6bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions common/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,9 @@
<string name="shortcuts_tile">Shortcuts tile</string>
<string name="shortcut_tiles">Shortcut tiles</string>
<string name="shortcuts_tile_n">Shortcuts tile #%d</string>
<string name="shortcuts_tile_1_title">Shortcuts #1</string>
<string name="shortcuts_tile_2_title">Shortcuts #2</string>
<string name="shortcuts_tile_3_title">Shortcuts #3</string>
<string name="shortcuts_tile_select">Select shortcuts tile to manage</string>
<string name="shortcuts_tile_description">Select up to 7 entities</string>
<string name="shortcuts_tile_empty">Choose entities in settings</string>
Expand Down
6 changes: 3 additions & 3 deletions wear/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
<!-- Tiles -->
<service
android:name=".tiles.ShortcutsTile"
android:label="Shortcuts #1"
android:label="@string/shortcuts_tile_1_title"
android:description="@string/shortcuts_tile_description"
android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER"
android:exported="true">
Expand All @@ -125,7 +125,7 @@
</service>
<service
android:name=".tiles.ShortcutsTile2"
android:label="Shortcuts #2"
android:label="@string/shortcuts_tile_2_title"
android:description="@string/shortcuts_tile_description"
android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER"
android:exported="true">
Expand All @@ -138,7 +138,7 @@
</service>
<service
android:name=".tiles.ShortcutsTile3"
android:label="Shortcuts #3"
android:label="@string/shortcuts_tile_3_title"
android:description="@string/shortcuts_tile_description"
android:permission="com.google.android.wearable.permission.BIND_TILE_PROVIDER"
android:exported="true">
Expand Down

0 comments on commit db7f6bf

Please sign in to comment.