Add further strings
This commit is contained in:
parent
376aa693ab
commit
7c1f02a3b4
4 changed files with 14 additions and 8 deletions
|
@ -14,15 +14,15 @@
|
|||
android:visible="false" />
|
||||
<item
|
||||
android:id="@+id/action_block_avatar"
|
||||
android:title="Block Avatar"
|
||||
android:title="@string/block_avatar"
|
||||
android:visible="false" />
|
||||
<item
|
||||
android:id="@+id/action_mute_participant"
|
||||
android:title="Mute Locally"
|
||||
android:title="@string/mute_locally"
|
||||
android:visible="false" />
|
||||
<item
|
||||
android:id="@+id/action_unmute_participant"
|
||||
android:title="Unmute Locally"
|
||||
android:title="@string/unmute_locally"
|
||||
android:visible="false" />
|
||||
<item
|
||||
android:id="@+id/invite"
|
||||
|
@ -34,7 +34,7 @@
|
|||
android:visible="false" />
|
||||
<item
|
||||
android:id="@+id/share_contact_details"
|
||||
android:title="Invite to start chat"
|
||||
android:title="@string/invite_to_start_chat"
|
||||
android:visible="false" />
|
||||
<item
|
||||
android:id="@+id/manage_permissions"
|
||||
|
|
|
@ -1283,4 +1283,10 @@
|
|||
<string name="save_to_downloads">Save to Downloads</string>
|
||||
<string name="save_to_downloads_success">File successfully saved to Downloads folder</string>
|
||||
<string name="mappreview_url">https://staticmap.monocles.eu/map.png</string>
|
||||
<string name="mute_locally">Mute locally</string>
|
||||
<string name="unmute_locally">Unmute locally</string>
|
||||
<string name="invite_to_start_chat">Invite to start chat</string>
|
||||
<string name="xmpp_network_description">The XMPP network is powered by a protocol called XMPP. It is a decentralized network, which means no one owns or controls the whole thing. It is a federated network which means anyone can run a XMPP service. Messages to other XMPP users are per default end-to-end encrypted with OMEMO.\\n\\nAddresses are called XMPP IDs and look similar to email addresses:</string>
|
||||
<string name="example_jid">username@monocles.eu</string>
|
||||
<string name="view_privacy_policy">View privacy policy</string>
|
||||
</resources>
|
|
@ -155,7 +155,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="15dp"
|
||||
android:fontFamily="@font/poppins"
|
||||
android:text="The Jabber network is powered by a protocol called XMPP. It is a decentralized network, which means no one owns or controls the whole thing. It is a federated network which means anyone can run a Jabber service. Messages to other XMPP users can be end-to-end encrypted by enabling OMEMO for the conversation.\n\nAddresses are called XMPP IDs and look similar to email addresses:" />
|
||||
android:text="@string/xmpp_network_description" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -165,7 +165,7 @@
|
|||
android:fontFamily="@font/archivoblack"
|
||||
android:textColor="?colorOnSecondaryContainer"
|
||||
android:textSize="18sp"
|
||||
android:text="username@monocles.eu" />
|
||||
android:text="@string/example_jid" />
|
||||
|
||||
<com.caverock.androidsvg.SVGImageView
|
||||
android:layout_width="match_parent"
|
||||
|
@ -324,7 +324,7 @@
|
|||
android:layout_marginEnd="32dp"
|
||||
android:layout_marginRight="32dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:text="View Privacy Policy"
|
||||
android:text="@string/view_privacy_policy"
|
||||
android:textColor="?colorOnTertiary"
|
||||
android:visibility="gone"
|
||||
app:backgroundTint="?colorTertiary"
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
<item
|
||||
android:id="@+id/action_block_avatar"
|
||||
android:orderInCategory="50"
|
||||
android:title="Block Avatar"
|
||||
android:title="@string/block_avatar"
|
||||
app:showAsAction="never" />
|
||||
<item
|
||||
android:id="@+id/action_archive"
|
||||
|
|
Loading…
Reference in a new issue