fix: moved hardcoded italian save text to string template, updated with english and italian language xmls

This commit is contained in:
eddyizm 2025-08-23 13:04:17 -07:00
parent c38c7c3deb
commit 26a5fb029a
No known key found for this signature in database
GPG key ID: CF5F671829E8158A
3 changed files with 4 additions and 1 deletions

View file

@ -19,6 +19,7 @@ import androidx.media3.common.util.UnstableApi;
import androidx.media3.session.MediaBrowser;
import androidx.media3.session.SessionToken;
import com.cappielloantonio.tempo.R;
import com.cappielloantonio.tempo.databinding.InnerFragmentPlayerCoverBinding;
import com.cappielloantonio.tempo.glide.CustomGlideRequest;
import com.cappielloantonio.tempo.model.Download;
@ -136,7 +137,7 @@ public class PlayerCoverFragment extends Fragment {
bind.innerButtonBottomRight.setOnClickListener(view -> {
if (playerBottomSheetViewModel.savePlayQueue()) {
Snackbar.make(requireView(), "Salvato", Snackbar.LENGTH_LONG).show();
Snackbar.make(requireView(), R.string.player_queue_save_queue_success, Snackbar.LENGTH_LONG).show();
}
});