···271271 <string name="settings_version">Version</string>
272272 <string name="settings_email_chooser_title">Send with…</string>
273273 <string name="settings_translators">Translators</string>
274274+ <string name="settings_contributors">Contributors</string>
274275 <string name="settings_automated_tracking">Automated tracking</string>
275276 <string name="settings_automated_tracking_text"><![CDATA[
276277Automatic tracking is possible through integration with third-party applications that allow to automate actions based on certain events. These applications, when a certain event occurs, can send a message to the app to start or stop the activity timer.<br/>
···11-/*
22- * This Source Code Form is subject to the terms of the Mozilla Public
33- * License, v. 2.0. If a copy of the MPL was not distributed with this
44- * file, You can obtain one at https://mozilla.org/MPL/2.0/.
55- */
66-package com.example.util.simpletimetracker.presentation.components
77-88-import androidx.compose.runtime.Composable
99-import androidx.compose.ui.graphics.Color
1010-import androidx.compose.ui.platform.LocalContext
1111-import androidx.wear.compose.material.ChipDefaults
1212-import androidx.wear.compose.material.CompactChip
1313-import androidx.wear.compose.material.Text
1414-import com.example.util.simpletimetracker.R
1515-1616-@Composable
1717-fun CreditsButton(onClick: () -> Unit) {
1818- CompactChip(
1919- onClick = onClick,
2020- label = { Text(LocalContext.current.getString(R.string.credits_button)) },
2121- colors = ChipDefaults.chipColors(
2222- backgroundColor = Color.Transparent
2323- )
2424- )
2525-}